You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
620 B
30 lines
620 B
/* |
|
Originally created by uic, now hand-edited |
|
*/ |
|
|
|
#ifndef SNIPPETDLG_H |
|
#define SNIPPETDLG_H |
|
|
|
#include "ui_snippetdlgbase.h" |
|
using Ui::SnippetDlgBase; |
|
|
|
class KActionCollection; |
|
|
|
class SnippetDlg : public QDialog, public SnippetDlgBase |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
explicit SnippetDlg( KActionCollection *ac, QWidget *parent = 0, |
|
bool modal = false, Qt::WindowFlags f = 0 ); |
|
~SnippetDlg(); |
|
|
|
void setGroupMode( bool groupMode ); |
|
|
|
KActionCollection* actionCollection; |
|
protected slots: |
|
void slotTextChanged( const QString& ); |
|
void slotReturnPressed(); |
|
}; |
|
|
|
#endif // SNIPPETDLG_H
|
|
|