/[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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 993 - (hide annotations)
Sun Aug 28 12:58:39 2005 UTC (18 years, 10 months ago) by astrand
File size: 953 byte(s)
Indenting with the CVS version of astyle

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

  ViewVC Help
Powered by ViewVC 1.1.26