ttyparitycombobox.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 CONEXUSMMTTYPARITYCOMBOBOX_H
00020 #define CONEXUSMMTTYPARITYCOMBOBOX_H
00021
00022 #include <gtkmm/comboboxtext.h>
00023
00024 #include <tr1/array>
00025 #include <string>
00026
00027 #include <conexus/tty.h>
00028
00029 namespace Conexus
00030 {
00031 namespace Gtk
00032 {
00033
00034 extern std::tr1::array<std::string,3> tty_parity_string;
00035
00039 class TTYParityComboBox : public ::Gtk::ComboBoxText
00040 {
00041 public:
00042 TTYParityComboBox ( int active=0 );
00043
00044 ~TTYParityComboBox();
00045
00046 Conexus::Parity parity();
00047
00048 void set_parity ( Conexus::Parity parity );
00049
00050 };
00051
00052 }
00053
00054 }
00055
00056 #endif