| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #ifndef QCMakeCacheView_h
- #define QCMakeCacheView_h
- #include "QCMake.h"
- #include <QTableView>
- #include <QAbstractTableModel>
- #include <QCheckBox>
- #include <QLineEdit>
- #include <QItemDelegate>
- #include <QSortFilterProxyModel>
- class QCMakeCacheModel;
- class QToolButton;
- /// Qt view class for cache properties
- class QCMakeCacheView : public QTableView
- {
- Q_OBJECT
- public:
- QCMakeCacheView(QWidget* p);
- QCMakeCacheModel* cacheModel() const;
- bool showAdvanced() const;
- public slots:
- void setShowAdvanced(bool);
- void setSearchFilter(const QString&);
- protected:
- QModelIndex moveCursor(CursorAction, Qt::KeyboardModifiers);
- void showEvent(QShowEvent* e);
- bool Init;
- QCMakeCacheModel* CacheModel;
- QSortFilterProxyModel* AdvancedFilter;
- QSortFilterProxyModel* SearchFilter;
- };
- /// Qt model class for cache properties
- class QCMakeCacheModel : public QAbstractTableModel
- {
- Q_OBJECT
- public:
- QCMakeCacheModel(QObject* parent);
- ~QCMakeCacheModel();
- enum { HelpRole = Qt::UserRole, TypeRole, AdvancedRole };
- public slots:
- void setProperties(const QCMakeCachePropertyList& props);
- void clear();
- void setEditEnabled(bool);
- bool removeRows(int row, int count, const QModelIndex& idx = QModelIndex());
- bool insertRows(int row, int num, const QModelIndex&);
- public:
- // satisfy [pure] virtuals
- int columnCount (const QModelIndex& parent) const;
- QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const;
- QModelIndex parent (const QModelIndex& index) const;
- int rowCount (const QModelIndex& parent = QModelIndex()) const;
- QVariant headerData (int section, Qt::Orientation orient, int role) const;
- Qt::ItemFlags flags (const QModelIndex& index) const;
- bool setData (const QModelIndex& index, const QVariant& value, int role);
- QModelIndex buddy (const QModelIndex& index) const;
- // get the properties
- QCMakeCachePropertyList properties() const;
-
- // editing enabled
- bool editEnabled() const;
- int newCount() const;
- protected:
- QCMakeCachePropertyList Properties;
- int NewCount;
- bool EditEnabled;
- };
- /// Qt delegate class for interaction (or other customization)
- /// with cache properties
- class QCMakeCacheModelDelegate : public QItemDelegate
- {
- Q_OBJECT
- public:
- QCMakeCacheModelDelegate(QObject* p);
- /// create our own editors for cache properties
- QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option,
- const QModelIndex& index ) const;
- };
- /// Editor widget for editing paths or file paths
- class QCMakeCacheFileEditor : public QLineEdit
- {
- Q_OBJECT
- public:
- QCMakeCacheFileEditor(QWidget* p);
- protected slots:
- virtual void chooseFile() = 0;
- protected:
- void resizeEvent(QResizeEvent* e);
- QToolButton* ToolButton;
- };
- class QCMakeCachePathEditor : public QCMakeCacheFileEditor
- {
- Q_OBJECT
- public:
- QCMakeCachePathEditor(QWidget* p = NULL);
- void chooseFile();
- };
- class QCMakeCacheFilePathEditor : public QCMakeCacheFileEditor
- {
- Q_OBJECT
- public:
- QCMakeCacheFilePathEditor(QWidget* p = NULL);
- void chooseFile();
- };
- #endif
|