/[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 933 - (show annotations)
Thu Jun 30 14:46:14 2005 UTC (18 years, 11 months ago) by astrand
File size: 1131 byte(s)
Fixed indentation, by running indent-all.

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 }
18
19 void CWindowData::SetId(const CStdString & csId)
20 {
21 m_csId = csId;
22 }
23
24 void CWindowData::SetTitle(const CStdString & csTitle)
25 {
26 m_csTitle = csTitle;
27 }
28
29 void CWindowData::SetX1(int iX1)
30 {
31 m_iX1 = iX1;
32 }
33
34 void CWindowData::SetY1(int iY1)
35 {
36 m_iY1 = iY1;
37 }
38
39 void CWindowData::SetX2(int iX2)
40 {
41 m_iX2 = iX2;
42 }
43
44 void CWindowData::SetY2(int iY2)
45 {
46 m_iY2 = iY2;
47 }
48
49 CStdString CWindowData::GetId()
50 {
51 return this->m_csId;
52 }
53
54 CStdString CWindowData::GetTitle()
55 {
56 return this->m_csTitle;
57 }
58
59 int CWindowData::GetX1()
60 {
61 return this->m_iX1;
62 }
63
64 int CWindowData::GetY1()
65 {
66 return this->m_iY1;
67 }
68
69 int CWindowData::GetX2()
70 {
71 return this->m_iX2;
72 }
73
74 int CWindowData::GetY2()
75 {
76 return this->m_iY2;
77 }

  ViewVC Help
Powered by ViewVC 1.1.26