summaryrefslogtreecommitdiff
path: root/widgettitle.h
blob: a2596db2f0f7853c862ff97ea7405d603ced3772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef WIDGETTITLE_H
#define WIDGETTITLE_H

#include <skygi/skygi.h>

#include "widget.h"

//! A Title class

class CTitle: public CWidget {
	public:
		/*! Constructor */
		CTitle();
		
		/*!
			Create Title
			
			\param parent HANDLE of the parent window on which to draw
			\param name Name of the Form
			\param x Top left x coordinate
			\param y Top left y coordinate
			\param w Form width
			\param h Form height
			\param ullcon
			\param style Style flags\n
			WGF_NO_BORDER: Button has no border\n
			WGF_BORDER_ON_MOUSE_OVER: Buttons has border on mouseover
			
			\return Success: S_OK\n
			Failure: E_HANDLE
			
			\see GetParent()
		*/
		HRESULT	Create(HANDLE parent, char * name, int x, int y, int w, int h, unsigned int ullcon, unsigned int style);
		
		/*!
			Set Title
			
			\param text New title
		*/
		int	SetText(char * text);
		
		/*!
			Get Title
			
			\return Title
		*/
		char *	GetText();
	protected:
		char Text[64];
};

#endif