~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to libksieve/ksieveui/sieveeditor.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
class QLineEdit;
28
28
 
 
29
 
29
30
namespace KSieveUi {
30
31
 
 
32
class SieveFindBar;
 
33
 
31
34
class KSIEVEUI_EXPORT SieveEditor : public KDialog {
32
35
  Q_OBJECT
33
36
  Q_PROPERTY( QString script READ script WRITE setScript )
45
48
  void slotTextChanged();
46
49
  void slotImport();
47
50
  void slotSaveAs();
 
51
  void slotFind();
 
52
 
48
53
private:
49
54
  bool saveToFile( const QString&filename );
50
55
  bool loadFromFile( const QString& filename );
51
56
  SieveTextEdit * mTextEdit;
52
57
  QTextEdit *mDebugTextEdit;
53
58
  QLineEdit *mScriptName;
 
59
  SieveFindBar *mFindBar;
54
60
};
55
61
}
56
62