mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 11:56:12 +00:00
6f16a5a95e
* Flags and Flagspaces from JSON * Sections from JSON * Change -a option to -A with default value 3. * Move Plugin name fetching out of QRCore::getList, Enable manual setting of Arch and Bits in OptionsDialog
40 lines
699 B
C++
40 lines
699 B
C++
#ifndef SECTIONSWIDGET_H
|
|
#define SECTIONSWIDGET_H
|
|
|
|
#include <QSplitter>
|
|
|
|
class MainWindow;
|
|
class QTreeWidget;
|
|
class QAbstractItemModel;
|
|
class QAbstractItemView;
|
|
class QItemSelectionModel;
|
|
|
|
struct SectionDescription;
|
|
|
|
namespace Ui
|
|
{
|
|
class SectionsWidget;
|
|
}
|
|
|
|
class SectionsWidget : public QSplitter
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SectionsWidget(MainWindow *main, QWidget *parent = 0);
|
|
|
|
void setup();
|
|
|
|
private:
|
|
QAbstractItemView *pieChart;
|
|
QItemSelectionModel *selectionModel;
|
|
MainWindow *main;
|
|
QTreeWidget *tree;
|
|
|
|
void setupViews();
|
|
|
|
void fillSections(int row, const SectionDescription §ion);
|
|
};
|
|
|
|
#endif // SECTIONSWIDGET_H
|