-
Notifications
You must be signed in to change notification settings - Fork 0
/
UScalesWindow.h
46 lines (46 loc) · 1.64 KB
/
UScalesWindow.h
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
//---------------------------------------------------------------------------
// This version by Peter Miller 18/7/2019 as csv file grapher
//
// Loosely based on an original public domain version by Frank heinrich, mail@frank-heinrich.de
//---------------------------------------------------------------------------
//----------------------------------------------------------------------------
#ifndef UScalesWindowH
#define UScalesWindowH
//----------------------------------------------------------------------------
#include <System.hpp>
#include <Windows.hpp>
#include <SysUtils.hpp>
#include <Classes.hpp>
#include <Graphics.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Controls.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
//----------------------------------------------------------------------------
class TScalesWindow : public TForm
{
__published:
TButton *OKBtn;
TButton *CancelBtn;
TBevel *Bevel1;
TEdit *Edit1;
TEdit *Edit2;
TEdit *Edit3;
TEdit *Edit4;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
void __fastcall OKBtnClick(TObject *Sender);
void __fastcall CancelBtnClick(TObject *Sender);
private:
public:
TScientificGraph *pScientificGraph;
virtual __fastcall TScalesWindow(TComponent* AOwner,
TScientificGraph *pScientificGraphK);
};
//----------------------------------------------------------------------------
extern PACKAGE TScalesWindow *ScalesWindow;
//----------------------------------------------------------------------------
#endif