PCManFM-Qt
desktopentrydialog.h
1 #ifndef FM_DESKTOPENTRYDIALOG_H
2 #define FM_DESKTOPENTRYDIALOG_H
3 
4 #include <QDialog>
5 #include "ui_desktopentrydialog.h"
6 
7 namespace PCManFM {
8 
9 class LIBFM_QT_API DesktopEntryDialog : public QDialog {
10  Q_OBJECT
11 public:
12  explicit DesktopEntryDialog(QWidget *parent = nullptr);
13 
14  virtual ~DesktopEntryDialog();
15 
16  virtual void accept() override;
17 
18 Q_SIGNALS:
19  void desktopEntryCreated(const QString& name);
20 
21 private Q_SLOTS:
22  void onChangingType(int type);
23  void onClickingIconButton();
24  void onClickingCommandButton();
25 
26 private:
27  Ui::DesktopEntryDialog ui;
28 
29 };
30 
31 } // namespace Fm
32 #endif // FM_DESKTOPENTRYDIALOG_H
PCManFM::DesktopEntryDialog
Definition: desktopentrydialog.h:9