// rdbutton_dialog.h // // Button Editor for SoundPanel // // (C) Copyright 2002-2019 Fred Gleason // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #ifndef RDBUTTON_DIALOG_H #define RDBUTTON_DIALOG_H #include #include #include #include #include class RDButtonDialog : public RDDialog { Q_OBJECT public: RDButtonDialog(QString station_name,const QString &caption, const QString &label_template,RDCartDialog *cart_dialog, const QString &svcname, QWidget *parent=0); ~RDButtonDialog(); QSize sizeHint() const; QSizePolicy sizePolicy() const; public slots: int exec(RDPanelButton *button,bool hookmode,const QString &username, const QString &passwd); private slots: void setCartData(); void clearCartData(); void setColorData(); void okData(); void cancelData(); private: void DisplayCart(int cartnum); QLineEdit *edit_label_edit; QLineEdit *edit_cart_edit; RDPanelButton *edit_button; QString edit_label_template; QString edit_filter; QString edit_group; QString edit_user_name; QString edit_user_password; QPushButton *edit_color_button; int edit_cart; QColor edit_color; QString edit_station_name; bool edit_hookmode; RDCartDialog *edit_cart_dialog; QString edit_svcname; }; #endif