File: resource.hh

package info (click to toggle)
bbppp 0.2.5-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 512 kB
  • ctags: 697
  • sloc: cpp: 5,336; sh: 327; makefile: 80
file content (125 lines) | stat: -rw-r--r-- 2,461 bytes parent folder | download | duplicates (3)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// resource.hh for bbppp - a ppp connection manager for Blackbox
//
//  Copyright (c) 1998-2000 John Kennis, jkennis@chello.nl
//
//  this program is free software; you can redistribute it and/or modify
//  it under the terms of the gnu general public license as published by
//  the free software foundation; either version 2 of the license, or
//  (at your option) any later version.
//
//  this program is distributed in the hope that it will be useful,
//  but without any warranty; without even the implied warranty of
//  merchantability or fitness for a particular purpose.  see the
//  gnu general public license for more details.
//
//  you should have received a copy of the gnu general public license
//  along with this program; if not, write to the free software
//  foundation, inc., 675 mass ave, cambridge, ma 02139, usa.
//
// (see the included file copying / gpl-2.0)
//


#ifndef __RESOURCE_HH
#define __RESOURCE_HH

#include "bbppp.hh"
#include "Baseresource.hh"

struct FRAME
{
	int width;
	int height;
	BTexture texture;
	int bevelWidth;
	int withdrawn_bevelWidth;
	XFontStruct *font;
};

struct POSITION
{
	int x;
	int y;
	int mask;
};

struct LABEL
{
	int width;
	int width0, width1, width2, width3;
	int height;
	bool transparent;
	BTexture texture;
	XFontStruct *font;
	BColor textColor;
};

struct BUTTON
{
	int width;
	int height;
	int bevelWidth;
	BTexture texture;
	BTexture texture_pressed;
	BColor tx_on_color;
	BColor tx_off_color;
	BColor rx_on_color;
	BColor rx_off_color;
	BColor switch_on_color;
	BColor switch_off_color;
	BColor switch_switching_color;
};

struct SHOW
{
	bool upTimeLabel;
	bool thruputLabel;
	bool showsecs;
};

struct REPORT
{
	bool auto_raise;
	unsigned int check_delay;
	char *startCommand;
	char *stopCommand;
	char *resumeCommand;
};


class Resource : public BaseResource
{
public:
	Resource(ToolWindow *);
	~Resource(void);

	struct FRAME frame;
	struct LABEL label;
	struct POSITION position;
	struct SHOW show;
	struct REPORT report;
	struct BUTTON button;
	bool compact;
	bool vertOrient;

protected:
	virtual void  LoadBBToolResource(void);

private:
	char defaultFont[100];

	void ButtonStyle();
	void SetDefaultFont();
	void Frame(void);
	void SizeAndPosition(void);
	void MailCheckSettings(void);
	void Label(void);
	void Show(void);
	void Button(void);
	void Envelope(void);
	void MailboxDep(void);
	void Menu(void);
	void GetActions(void);
	void Clean(void);
};
#endif /* __RESOURCE_HH */