kopenwith.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __open_with_h__
00021 #define __open_with_h__
00022
00023 #include <qdialog.h>
00024
00025 #include <kurl.h>
00026 #include <krun.h>
00027
00028 #include <kservice.h>
00029
00030 class KApplicationTree;
00031 class KURLRequester;
00032
00033 class QWidget;
00034 class QCheckBox;
00035 class QPushButton;
00036 class QLabel;
00037
00038
00039
00040
00047 class KOpenWithDlg : public QDialog
00048 {
00049 Q_OBJECT
00050 public:
00051
00060 KOpenWithDlg( const KURL::List& urls, QWidget *parent = 0L );
00061
00071 KOpenWithDlg( const KURL::List& urls, const QString& text, const QString& value, QWidget *parent = 0L );
00072
00081 KOpenWithDlg( const QString& serviceType, const QString& value, QWidget *parent = 0L );
00082
00090 KOpenWithDlg( QWidget *parent = 0L );
00091
00095 ~KOpenWithDlg();
00096
00100 QString text() const;
00105 KService::Ptr service() const { return m_pService; }
00106
00107 public slots:
00111 void slotClear();
00112 void slotSelected( const QString&_name, const QString& _exec );
00113 void slotHighlighted( const QString& _name, const QString& _exec );
00114 void slotTextChanged();
00115 void slotTerminalToggled(bool);
00116 void slotDbClick();
00117 void slotOK();
00118
00119 protected slots:
00123 virtual void accept();
00124
00125 protected:
00126
00130 void setServiceType( const KURL::List& _urls );
00131
00139 void init( const QString& text, const QString& value );
00140
00141 KURLRequester * edit;
00142 QString m_command;
00143
00144 KApplicationTree* m_pTree;
00145 QLabel *label;
00146
00147 QString qName, qServiceType;
00148 bool m_terminaldirty;
00149 QCheckBox *terminal, *remember, *UNUSED_IN_BRANCH;
00150 QPushButton *UNUSED;
00151 QPushButton *UNUSED2;
00152
00153 KService::Ptr m_pService;
00154
00155 class KOpenWithDlgPrivate;
00156 KOpenWithDlgPrivate *d;
00157 };
00158
00159
00160
00161 #ifndef KDE_NO_COMPAT
00162
00173 class KFileOpenWithHandler : public KOpenWithHandler
00174 {
00175 public:
00176 KFileOpenWithHandler() : KOpenWithHandler() {}
00177 virtual ~KFileOpenWithHandler() {}
00178
00183 virtual bool displayOpenWithDialog( const KURL::List& urls );
00184 };
00185 #endif
00186
00187
00188
00189
00190 #endif
This file is part of the documentation for kdelibs Version 3.1.5.