TPVwin/TpvCFG.h
2021-09-12 22:19:30 +02:00

73 lines
2.4 KiB
C++

//---------------------------------------------------------------------------
#ifndef TpvCFGH
#define TpvCFGH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>
#include <DBCtrls.hpp>
#include <Mask.hpp>
//---------------------------------------------------------------------------
#define EXIST_CFG
class TCFG : public TForm
{
__published: // IDE-managed Components
TPageControl *PageControl1;
TStatusBar *StatusBar1;
TPanel *Panel2;
TSpeedButton *SpeedButton1;
TTabSheet *General;
TTabSheet *Ventas;
TLabel *Label1;
TComboBox *alFacturar;
TSpeedButton *SpeedButton2;
TCheckBox *Codigo_y_Unidad;
TCheckBox *initMax;
TLabel *Label2;
TMaskEdit *SigFactura;
TSpeedButton *SpeedButton3;
TTabSheet *TabSheet1;
TLabel *Label3;
TComboBox *RecalcularPrecioVentaAlCambiarCoste;
TCheckBox *RefQR_LEDS;
TLabel *Label4;
TBevel *Bevel1;
TBevel *Bevel2;
TBevel *Bevel3;
TBevel *Bevel4;
TCheckBox *ImprimirCabFam;
TCheckBox *ImprimirCabFamVacia;
TBevel *Bevel5;
TLabel *Label5;
TCheckBox *StockQR_LEDS;
TCheckBox *CajonMonedas;
TComboBox *CajonMonedasDonde;
TButton *ProbarCajon;
TTabSheet *TabSheet2;
TBevel *Bevel6;
TCheckBox *VntProdCosteBeneficio;
TCheckBox *CambioPrecioProdExistente;
TBevel *Bevel7;
TLabel *Label6;
TCheckBox *CmpActualizaPCoste;
TCheckBox *CmpActualizaPVP;
void __fastcall SpeedButton1Click(TObject *Sender);
void __fastcall SpeedButton2Click(TObject *Sender);
void __fastcall SpeedButton3Click(TObject *Sender);
void __fastcall CajonMonedasClick(TObject *Sender);
void __fastcall ProbarCajonClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TCFG(TComponent* Owner);
void __fastcall AbrirCajon( void );
};
//---------------------------------------------------------------------------
extern PACKAGE TCFG *CFG;
//---------------------------------------------------------------------------
#endif