/[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 937 - (show annotations)
Fri Jul 1 06:50:52 2005 UTC (18 years, 10 months ago) by astrand
File size: 1137 byte(s)
Indenting with astyle instead of indent

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

  ViewVC Help
Powered by ViewVC 1.1.26