File: vieweropt.h

package info (click to toggle)
rtklib 2.4.3%2Bdfsg1-2.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 41,796 kB
  • sloc: cpp: 51,592; ansic: 50,584; fortran: 987; makefile: 861; sh: 45
file content (41 lines) | stat: -rw-r--r-- 1,244 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
//---------------------------------------------------------------------------

#ifndef vieweroptH
#define vieweroptH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TViewerOptDialog : public TForm
{
__published:
	TButton *BtnOk;
	TButton *BtnCancel;
	TLabel *Label6;
	TPanel *Color1;
	TButton *BtnColor1;
	TLabel *Label1;
	TPanel *Color2;
	TButton *BtnColor2;
	TLabel *Label15;
	TLabel *FontLabel;
	TButton *BtnFont;
	TColorDialog *ColorDialog;
	TFontDialog *FontDialog;
	void __fastcall BtnColor1Click(TObject *Sender);
	void __fastcall BtnColor2Click(TObject *Sender);
	void __fastcall BtnFontClick(TObject *Sender);
	void __fastcall BtnOkClick(TObject *Sender);
	void __fastcall FormShow(TObject *Sender);
private:
public:
	__fastcall TViewerOptDialog(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TViewerOptDialog *ViewerOptDialog;
//---------------------------------------------------------------------------
#endif