/[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 921 - (show annotations)
Thu Jun 30 09:06:43 2005 UTC (18 years, 11 months ago) by astrand
File MIME type: text/plain
File size: 1043 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 "StdString.h"
12
13 #if !defined(__WINDOWDATA_H__)
14 #define __WINDOWDATA_H__
15
16 class CWindowData
17 {
18 public:
19 CWindowData(const CStdString& csId);
20
21 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
29 CStdString CWindowData::GetId();
30 CStdString CWindowData::GetTitle();
31 int CWindowData::GetX1();
32 int CWindowData::GetY1();
33 int CWindowData::GetX2();
34 int CWindowData::GetY2();
35
36 private:
37 CStdString m_csTitle;
38 CStdString m_csId;
39 int m_iX1,m_iY1,m_iX2,m_iY2;
40 };
41
42 #endif // !defined(__WINDOWDATA_H__)

  ViewVC Help
Powered by ViewVC 1.1.26