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

Contents of /sourceforge.net/trunk/seamlessrdp/ClientDLL/windowdata.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 993 - (show 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 //
2 // Copyright (C) 2004-2005 Martin Wickett
3 //
4
5 #include "StdString.h"
6
7 #if !defined(__WINDOWDATA_H__)
8 #define __WINDOWDATA_H__
9
10 class CWindowData
11 {
12 public:
13 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 HWND CWindowData::TaskbarWindowHandle;
22
23 CStdString CWindowData::GetId();
24 CStdString CWindowData::GetTitle();
25 int CWindowData::GetX1();
26 int CWindowData::GetY1();
27 int CWindowData::GetX2();
28 int CWindowData::GetY2();
29
30 private:
31 CStdString m_csTitle;
32 CStdString m_csId;
33 int m_iX1, m_iY1, m_iX2, m_iY2;
34 };
35
36 #endif // !defined(__WINDOWDATA_H__)

  ViewVC Help
Powered by ViewVC 1.1.26