/[rdesktop]/sourceforge.net/trunk/seamlessrdp/ClientDLL/windowdata.cpp
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /sourceforge.net/trunk/seamlessrdp/ClientDLL/windowdata.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 938 - (show annotations)
Fri Jul 1 07:01:00 2005 UTC (18 years, 11 months ago) by astrand
File size: 925 byte(s)
Added proper copyright headers

1 //
2 // Copyright (C) 2004-2005 Martin Wickett
3 //
4
5 #include "WindowData.h"
6
7 CWindowData::CWindowData(const CStdString & csId):m_csTitle(""), m_csId(""), m_iX1(0), m_iY1(0), m_iX2(0),
8 m_iY2(0)
9 {}
10
11 void CWindowData::SetId(const CStdString & csId)
12 {
13 m_csId = csId;
14 }
15
16 void CWindowData::SetTitle(const CStdString & csTitle)
17 {
18 m_csTitle = csTitle;
19 }
20
21 void CWindowData::SetX1(int iX1)
22 {
23 m_iX1 = iX1;
24 }
25
26 void CWindowData::SetY1(int iY1)
27 {
28 m_iY1 = iY1;
29 }
30
31 void CWindowData::SetX2(int iX2)
32 {
33 m_iX2 = iX2;
34 }
35
36 void CWindowData::SetY2(int iY2)
37 {
38 m_iY2 = iY2;
39 }
40
41 CStdString CWindowData::GetId()
42 {
43 return this->m_csId;
44 }
45
46 CStdString CWindowData::GetTitle()
47 {
48 return this->m_csTitle;
49 }
50
51 int CWindowData::GetX1()
52 {
53 return this->m_iX1;
54 }
55
56 int CWindowData::GetY1()
57 {
58 return this->m_iY1;
59 }
60
61 int CWindowData::GetX2()
62 {
63 return this->m_iX2;
64 }
65
66 int CWindowData::GetY2()
67 {
68 return this->m_iY2;
69 }

  ViewVC Help
Powered by ViewVC 1.1.26