pPathListEditor.sip 592 B

123456789101112131415161718192021222324252627282930
  1. /*!
  2. \file pFileListEditor.h
  3. \date 2008-01-14T00:27:48
  4. \author Filipe AZEVEDO aka Nox P\@sNox <pasnox@gmail.com>
  5. \brief a pStringListEditor that handle files name.
  6. */
  7. /*!
  8. \brief a pPathListEditor that handle paths name.
  9. \details
  10. */
  11. class pPathListEditor : pFileListEditor
  12. {
  13. %TypeHeaderCode
  14. #include <gui/listeditor/pPathListEditor.h>
  15. %End
  16. public:
  17. pPathListEditor( QWidget* parent = 0 );
  18. pPathListEditor( const QString& title, const QString& path, QWidget* parent = 0 );
  19. protected:
  20. virtual void init();
  21. protected slots:
  22. virtual void onAddItem();
  23. virtual void onEditItem();
  24. };