/[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 937 - (hide annotations)
Fri Jul 1 06:50:52 2005 UTC (18 years, 11 months ago) by astrand
File MIME type: text/plain
File size: 1132 byte(s)
Indenting with astyle instead of indent

1 astrand 930 //*********************************************************************************
2     //
3     //Title: Terminal Services Window Clipper
4     //
5     //Author: Martin Wickett
6     //
7     //Date: 2004
8     //
9     //*********************************************************************************
10    
11     #include "StdString.h"
12    
13     #if !defined(__WINDOWDATA_H__)
14     #define __WINDOWDATA_H__
15    
16     class CWindowData
17     {
18 astrand 937 public:
19     CWindowData(const CStdString & csId);
20 astrand 930
21 astrand 937 void CWindowData::SetId(const CStdString & csId);
22     void CWindowData::SetTitle(const CStdString & csTitle);
23     void CWindowData::SetX1(int iX1);
24     void CWindowData::SetY1(int iY1);
25     void CWindowData::SetX2(int iX2);
26     void CWindowData::SetY2(int iY2);
27     HWND CWindowData::TaskbarWindowHandle;
28 astrand 930
29 astrand 937 CStdString CWindowData::GetId();
30     CStdString CWindowData::GetTitle();
31     int CWindowData::GetX1();
32     int CWindowData::GetY1();
33     int CWindowData::GetX2();
34     int CWindowData::GetY2();
35 astrand 930
36 astrand 937 private:
37     CStdString m_csTitle;
38     CStdString m_csId;
39     int m_iX1, m_iY1, m_iX2, m_iY2;
40 astrand 930 };
41    
42 astrand 933 #endif // !defined(__WINDOWDATA_H__)

  ViewVC Help
Powered by ViewVC 1.1.26