PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/guitone-1.0rc5/src/view/dialogs/Dialog.h

#
C Header | 48 lines | 23 code | 8 blank | 17 comment | 0 complexity | 755004bf6266422e0727ef73039920f0 MD5 | raw file
Possible License(s): GPL-3.0
  1. /***************************************************************************
  2. * Copyright (C) 2007 by Thomas Keller *
  3. * me@thomaskeller.biz *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation, either version 3 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  17. ***************************************************************************/
  18. #ifndef DIALOG_H
  19. #define DIALOG_H
  20. #include <QDialog>
  21. #include <QHideEvent>
  22. class Dialog : public QDialog
  23. {
  24. Q_OBJECT
  25. public:
  26. Dialog(QWidget *);
  27. Dialog(QWidget *, const QString &);
  28. ~Dialog();
  29. void init();
  30. void setStayOnTop();
  31. int execDocumentModal();
  32. signals:
  33. void dialogHidden();
  34. protected:
  35. virtual void hideEvent(QHideEvent *);
  36. private:
  37. void restoreState(void);
  38. void saveState(void);
  39. };
  40. #endif