/[rdesktop]/sourceforge.net/trunk/seamlessrdp/ClientDLL/windowdata.h
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.h

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 MIME type: text/plain
File size: 958 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 "StdString.h"
6    
7     #if !defined(__WINDOWDATA_H__)
8     #define __WINDOWDATA_H__
9    
10     class CWindowData
11     {
12 astrand 937 public:
13 astrand 993 CWindowData( const CStdString & csId );
14    
15     void CWindowData::SetId( const CStdString & csId );
16     void CWindowData::SetTitle( const CStdString & csTitle );
17     void CWindowData::SetX1( int iX1 );
18     void CWindowData::SetY1( int iY1 );
19     void CWindowData::SetX2( int iX2 );
20     void CWindowData::SetY2( int iY2 );
21 astrand 937 HWND CWindowData::TaskbarWindowHandle;
22 astrand 993
23 astrand 937 CStdString CWindowData::GetId();
24     CStdString CWindowData::GetTitle();
25     int CWindowData::GetX1();
26     int CWindowData::GetY1();
27     int CWindowData::GetX2();
28     int CWindowData::GetY2();
29 astrand 993
30 astrand 937 private:
31     CStdString m_csTitle;
32     CStdString m_csId;
33     int m_iX1, m_iY1, m_iX2, m_iY2;
34 astrand 930 };
35    
36 astrand 933 #endif // !defined(__WINDOWDATA_H__)

  ViewVC Help
Powered by ViewVC 1.1.26