ttystopbitsradio.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef CONEXUSMMTTYSTOPBITSRADIO_H
00020 #define CONEXUSMMTTYSTOPBITSRADIO_H
00021
00022 #include <gtkmm/table.h>
00023 #include <gtkmm/radiobutton.h>
00024
00025 namespace Conexus
00026 {
00027 namespace Gtk
00028 {
00029
00033 class TTYStopBitsRadio : public ::Gtk::Table
00034 {
00035 public:
00036 TTYStopBitsRadio ( unsigned stop_bits=1 );
00037
00038 ~TTYStopBitsRadio();
00039
00040 unsigned stop_bits();
00041 void set_stop_bits ( unsigned stop_bits );
00042
00043 sigc::signal<void> signal_changed();
00044
00045 protected:
00046 ::Gtk::RadioButton m_radio_button[2];
00047 unsigned m_stop_bits;
00048
00049 sigc::signal<void> m_signal_changed;
00050
00051 void on_button_changed ( unsigned stop_bits );
00052 };
00053
00054 }
00055
00056 }
00057
00058 #endif