Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
c3585a77
Commit
c3585a77
authored
7 years ago
by
Elliot Oram
Browse files
Options
Downloads
Patches
Plain Diff
Add WorkspaceWidgetSimple to SIP
Refs #21442
parent
b60d3fa0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
qt/python/mantidqt/widgets/src/_widgetscore.sip
+20
-5
20 additions, 5 deletions
qt/python/mantidqt/widgets/src/_widgetscore.sip
qt/python/mantidqt/widgets/workspacewidget/workspacetreewidget.py
+1
-1
1 addition, 1 deletion
...n/mantidqt/widgets/workspacewidget/workspacetreewidget.py
with
21 additions
and
6 deletions
qt/python/mantidqt/widgets/src/_widgetscore.sip
+
20
−
5
View file @
c3585a77
...
@@ -96,6 +96,12 @@ public:
...
@@ -96,6 +96,12 @@ public:
const QStringList &disabled = QStringList());
const QStringList &disabled = QStringList());
};
};
// ---------------------------------
// WorkspaceWidget and dependencies
// ---------------------------------
class MantidDisplayBase /Abstract/ {
class MantidDisplayBase /Abstract/ {
%TypeHeaderCode
%TypeHeaderCode
#include "MantidQtWidgets/Common/MantidDisplayBase.h"
#include "MantidQtWidgets/Common/MantidDisplayBase.h"
...
@@ -104,6 +110,15 @@ private:
...
@@ -104,6 +110,15 @@ private:
MantidDisplayBase();
MantidDisplayBase();
};
};
class MantidTreeModel : MantidDisplayBase {
%TypeHeaderCode
#include "MantidQtWidgets/Common/MantidTreeModel.h"
%End
public:
MantidTreeModel();
private:
MantidTreeModel(const MantidTreeModel &);
};
class WorkspaceTreeWidget : QWidget {
class WorkspaceTreeWidget : QWidget {
%TypeHeaderCode
%TypeHeaderCode
...
@@ -114,12 +129,12 @@ public:
...
@@ -114,12 +129,12 @@ public:
QWidget *parent /TransferThis/ = nullptr);
QWidget *parent /TransferThis/ = nullptr);
};
};
class MantidTreeModel : MantidDisplayBase {
// Implementation to override context menu
class WorkspaceTreeWidgetSimple : WorkspaceTreeWidget {
%TypeHeaderCode
%TypeHeaderCode
#include "MantidQtWidgets/Common/
MantidTreeModel
.h"
#include "MantidQtWidgets/Common/
WorkspacePresenter/WorkspaceTreeWidgetSimple
.h"
%End
%End
public:
public:
MantidTreeModel();
WorkspaceTreeWidgetSimple(MantidDisplayBase *mdb /Transfer/,
private:
QWidget *parent /TransferThis/ = nullptr);
MantidTreeModel(const MantidTreeModel &);
};
};
This diff is collapsed.
Click to expand it.
qt/python/mantidqt/widgets/workspacewidget/workspacetreewidget.py
+
1
−
1
View file @
c3585a77
...
@@ -19,4 +19,4 @@ from __future__ import (absolute_import)
...
@@ -19,4 +19,4 @@ from __future__ import (absolute_import)
from
mantidqt.utils.qt
import
import_qtlib
from
mantidqt.utils.qt
import
import_qtlib
WorkspaceTreeWidget
=
import_qtlib
(
'
_widgetscore
'
,
'
mantidqt.widgets.workspacewidget
'
,
'
WorkspaceTreeWidget
'
)
WorkspaceTreeWidget
=
import_qtlib
(
'
_widgetscore
'
,
'
mantidqt.widgets.workspacewidget
'
,
'
WorkspaceTreeWidget
Simple
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment