/[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 921 - (show annotations)
Thu Jun 30 09:06:43 2005 UTC (18 years, 11 months ago) by astrand
File size: 1165 byte(s)
Renamed solution to seamlessrdp.sln. Converted filenames to lowercase.

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

  ViewVC Help
Powered by ViewVC 1.1.26