Files
cantata/support/dialog.h

179 lines
6.4 KiB
C++

/*
* Cantata
*
* Copyright (c) 2011-2014 Craig Drummond <craig.p.drummond@gmail.com>
*
* ----
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef DIALOG_H
#define DIALOG_H
#include "config.h"
#ifdef ENABLE_KDE_SUPPORT
#include <KDE/KDialog>
#include <KDE/KStandardGuiItem>
struct Dialog : public KDialog {
Dialog(QWidget *parent, const QString &name=QString(), const QSize &defSize=QSize());
virtual ~Dialog();
const QSize & configuredSize() const { return cfgSize; }
void resize(int w, int h) { resize(QSize(w, h)); }
void resize(const QSize &sz);
private:
QSize cfgSize;
};
typedef KGuiItem GuiItem;
namespace StdGuiItem {
inline KGuiItem ok() { return KStandardGuiItem::ok(); }
inline KGuiItem cancel() { return KStandardGuiItem::cancel(); }
inline KGuiItem yes() { return KStandardGuiItem::yes(); }
inline KGuiItem no() { return KStandardGuiItem::no(); }
inline KGuiItem discard() { return KStandardGuiItem::discard(); }
inline KGuiItem save() { return KStandardGuiItem::save(); }
inline KGuiItem apply() { return KStandardGuiItem::apply(); }
inline KGuiItem close() { return KStandardGuiItem::close(); }
inline KGuiItem help() { return KStandardGuiItem::help(); }
inline KGuiItem overwrite() { return KStandardGuiItem::overwrite(); }
inline KGuiItem reset() { return KStandardGuiItem::reset(); }
inline KGuiItem cont() { return KStandardGuiItem::cont(); }
inline KGuiItem del() { return KStandardGuiItem::del(); }
inline KGuiItem stop() { return KStandardGuiItem::stop(); }
inline KGuiItem remove() { return KStandardGuiItem::remove(); }
inline KGuiItem back(bool useRtl=false) { return KStandardGuiItem::back(useRtl ? KStandardGuiItem::UseRTL : KStandardGuiItem::IgnoreRTL); }
inline KGuiItem forward(bool useRtl=false) { return KStandardGuiItem::forward(useRtl ? KStandardGuiItem::UseRTL : KStandardGuiItem::IgnoreRTL); }
};
#else
#include <QDialog>
#include <QDialogButtonBox>
#include <QMap>
#include <QSet>
#include <QApplication>
#include "localize.h"
struct GuiItem {
GuiItem(const QString &t=QString(), const QString &i=QString())
: text(t), icon(i) {
}
QString text;
QString icon;
};
namespace StdGuiItem {
extern GuiItem ok();
extern GuiItem cancel();
extern GuiItem yes();
extern GuiItem no();
extern GuiItem discard();
extern GuiItem save();
extern GuiItem apply();
extern GuiItem close();
extern GuiItem help();
extern GuiItem overwrite();
extern GuiItem reset();
extern GuiItem cont();
extern GuiItem del();
extern GuiItem stop();
extern GuiItem remove();
extern GuiItem back(bool useRtl=false);
extern GuiItem forward(bool useRtl=false);
extern QSet<QString> standardNames();
};
class QAbstractButton;
class QMenu;
class Dialog : public QDialog {
Q_OBJECT
Q_ENUMS(ButtonCode)
public:
enum ButtonCode
{
None = 0x00000000,
Help = 0x00000001, ///< Show Help button. (this button will run the help set with setHelp)
Default = 0x00000002, ///< Show Default button.
Ok = 0x00000004, ///< Show Ok button. (this button accept()s the dialog; result set to QDialog::Accepted)
Apply = 0x00000008, ///< Show Apply button.
Try = 0x00000010, ///< Show Try button.
Cancel = 0x00000020, ///< Show Cancel-button. (this button reject()s the dialog; result set to QDialog::Rejected)
Close = 0x00000040, ///< Show Close-button. (this button closes the dialog)
No = 0x00000080, ///< Show No button. (this button closes the dialog and sets the result to KDialog::No)
Yes = 0x00000100, ///< Show Yes button. (this button closes the dialog and sets the result to KDialog::Yes)
Reset = 0x00000200, ///< Show Reset button
Details = 0x00000400, ///< Show Details button. (this button will show the detail widget set with setDetailsWidget)
User1 = 0x00001000, ///< Show User defined button 1.
User2 = 0x00002000, ///< Show User defined button 2.
User3 = 0x00004000, ///< Show User defined button 3.
NoDefault = 0x00008000 ///< Used when specifying a default button; indicates that no button should be marked by default.
};
Q_DECLARE_FLAGS(ButtonCodes, ButtonCode)
enum ButtonPopupMode
{
InstantPopup = 0,
DelayedPopup = 1
};
Dialog(QWidget *parent, const QString &name=QString(), const QSize &defSize=QSize());
virtual ~Dialog();
void setCaption(const QString &cap) { setWindowTitle(cap); }
void setButtons(ButtonCodes buttons);
void setDefaultButton(ButtonCode button);
void setButtonText(ButtonCode button, const QString &text);
void setButtonGuiItem(ButtonCode button, const GuiItem &item);
void setButtonMenu(ButtonCode button, QMenu *menu, ButtonPopupMode popupmode=InstantPopup);
void enableButton(ButtonCode button, bool enable);
void enableButtonOk(bool enable) { enableButton(Ok, enable); }
bool isButtonEnabled(ButtonCode button);
void setMainWidget(QWidget *widget);
virtual void slotButtonClicked(int button);
QWidget * mainWidget() { return mw; }
const QSize & configuredSize() const { return cfgSize; }
void resize(int w, int h) { resize(QSize(w, h)); }
void resize(const QSize &sz);
private Q_SLOTS:
void buttonPressed(QAbstractButton *button);
private:
void create();
QAbstractButton *getButton(ButtonCode button);
void setButtonGuiItem(QDialogButtonBox::StandardButton button, const GuiItem &item);
void showEvent(QShowEvent *e);
private:
int defButton;
int buttonTypes;
QWidget *mw;
QDialogButtonBox *buttonBox;
QMap<ButtonCode, QAbstractButton *> userButtons;
QSize cfgSize;
bool managedAccels;
};
Q_DECLARE_OPERATORS_FOR_FLAGS(Dialog::ButtonCodes)
#endif
#endif