X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fengineer%2Fmainpanel.h;h=56dd49450a6e9eb0ffb754e43cc86864ac4f6328;hb=010d8321e982d1684fcbff5bf6fc2bdec7cb7bae;hp=091d9707d31b240317524d3be8b0b1352c13e4ee;hpb=aead7f2da831199fbb8f6950b067656b2965c2fa;p=r2c2.git diff --git a/source/engineer/mainpanel.h b/source/engineer/mainpanel.h index 091d970..56dd494 100644 --- a/source/engineer/mainpanel.h +++ b/source/engineer/mainpanel.h @@ -1,3 +1,10 @@ +/* $Id$ + +This file is part of the MSP Märklin suite +Copyright © 2006-2008 Mikkosoft Productions, Mikko Rasa +Distributed under the GPL +*/ + #ifndef MAINPANEL_H_ #define MAINPANEL_H_ @@ -9,19 +16,22 @@ class Engineer; class MainPanel: public Msp::GLtk::Panel { -public: - MainPanel(Engineer &, Msp::GLtk::Resources &); - void set_status_text(const std::string &); private: Engineer &engineer; Msp::GLtk::Indicator *ind_on; Msp::GLtk::Indicator *ind_off; Msp::GLtk::Label *lbl_status; +public: + MainPanel(Engineer &, Msp::GLtk::Resources &); + + void set_status_text(const std::string &); +private: void power_on(); void power_off(); void new_loc(); void quit(); + void power_event(bool); }; #endif