Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
b7d2a844
Commit
b7d2a844
authored
Apr 12, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QT: Fixed nav in flow.
parent
d3440f5e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
17 deletions
+19
-17
wb/lib/wb/qt/wb_foe_qt.cqt
wb/lib/wb/qt/wb_foe_qt.cqt
+2
-3
wb/lib/wb/qt/wb_gre_qt.cqt
wb/lib/wb/qt/wb_gre_qt.cqt
+3
-3
wb/lib/wb/qt/wb_gre_qt.h
wb/lib/wb/qt/wb_gre_qt.h
+2
-2
xtt/lib/flow/qt/flow_draw_qt.cqt
xtt/lib/flow/qt/flow_draw_qt.cqt
+11
-7
xtt/lib/ge/qt/ge_qt.cqt
xtt/lib/ge/qt/ge_qt.cqt
+1
-2
No files found.
wb/lib/wb/qt/wb_foe_qt.cqt
View file @
b7d2a844
...
...
@@ -1030,7 +1030,6 @@ pwr_tStatus WFoeQt::create_window(int x_top, int y_top, int width_adb,
statusbar->addWidget(label);
add_expanding(statusbar, textinput);
subpane = new QSplitter(Qt::Vertical);
QHBoxLayout* palbox = new QHBoxLayout();
node_palctx = new PalQt(this, "Objects", ldhsession, "PlcEditorPalette",
&node_palette, &sts);
...
...
@@ -1047,13 +1046,13 @@ pwr_tStatus WFoeQt::create_window(int x_top, int y_top, int width_adb,
add_expanding(palbox, con_palette);
add_expanding(palbox, nav_palette);
subpane = new QSplitter(Qt::Vertical);
add_expanding(subpane, palbox);
pane = new QSplitter(Qt::Horizontal);
gre = new WGreQt(this, "Name");
((WGreQt*)gre)->new_navigator(subpane);
subpane->addWidget(((WGreQt*)gre)->nav_widget);
subpane->addWidget(((WGreQt*)gre)->create_navigator());
add_expanding(pane, ((WGreQt*)gre)->form_widget);
pane->addWidget(subpane);
...
...
wb/lib/wb/qt/wb_gre_qt.cqt
View file @
b7d2a844
...
...
@@ -66,10 +66,10 @@ WGreQt::~WGreQt()
}
}
int WGreQt::new_navigator(QWidget* parent
)
QWidget* WGreQt::create_navigator(
)
{
nav_widget = flownavwidgetqt_new(flow_widget);
return
1
;
return
nav_widget
;
}
int WGreQt::new_navigator_popup()
...
...
@@ -106,4 +106,4 @@ void WGreQt::get_popup_position(int* x, int* y)
CoWowQt::PopupPosition(form_widget, *x, *y, &wind_x, &wind_y);
*x = wind_x;
*y = wind_y;
}
\ No newline at end of file
}
wb/lib/wb/qt/wb_gre_qt.h
View file @
b7d2a844
...
...
@@ -59,7 +59,7 @@ public:
void
trace_stop
();
void
get_popup_position
(
int
*
x
,
int
*
y
);
int
new_navigator
(
QWidget
*
parent
);
QWidget
*
create_navigator
(
);
int
new_navigator_popup
();
private:
...
...
@@ -79,4 +79,4 @@ private:
WGreQt
*
wgre
;
};
#endif
\ No newline at end of file
#endif
xtt/lib/flow/qt/flow_draw_qt.cqt
View file @
b7d2a844
...
...
@@ -200,7 +200,7 @@ FlowDrawQt::FlowDrawQt(QWidget* x_toplevel, void** flow_ctx,
assert(dynamic_cast<QtScrollWidgetFlow*>(toplevel) != NULL);
m_wind.window = dynamic_cast<QtScrollWidgetFlow*>(toplevel);
m_wind.buffer = &(
((QtScrollWidgetFlow*)m_wind.window
)->image);
m_wind.buffer = &(
dynamic_cast<QtScrollWidgetFlow*>(toplevel
)->image);
ctx->mw = &m_wind;
ctx->navw = &nav_wind;
...
...
@@ -216,7 +216,7 @@ void FlowDrawQt::init_nav(QWidget* nav_widget, void* flow_ctx)
{
assert(dynamic_cast<QtScrollWidgetFlow*>(nav_widget) != NULL);
nav_wind.window = dynamic_cast<QtScrollWidgetFlow*>(nav_widget);
nav_wind.buffer = &(
((QtScrollWidgetFlow*)nav_wind.window
)->image);
nav_wind.buffer = &(
dynamic_cast<QtScrollWidgetFlow*>(nav_widget
)->image);
QPalette pal;
pal.setColor(QPalette::Background, background);
...
...
@@ -744,18 +744,22 @@ void FlowDrawQt::event_handler(FlowCtx* ctx, QEvent* event, QWidget* target)
}
break;
}
case QEvent::Show: {
sts = ctx->event_handler_nav(flow_eEvent_Map, 0, 0);
case QEvent::Paint:
case QEvent::UpdateRequest: {
QPaintEvent* paintEvent = ((QPaintEvent*)event);
sts = ctx->event_handler_nav(
flow_eEvent_Exposure, paintEvent->rect().x(), paintEvent->rect().y());
nav_wind.window->update();
break;
}
case QEvent::MouseMove: {
Q
Point pos = QCursor::pos(
);
Q
MouseEvent* mouseEvent = ((QMouseEvent*)event
);
if (button1_pressed || button2_pressed || button3_pressed) {
sts = ctx->event_handler_nav(
flow_eEvent_ButtonMotion,
pos.x(), pos.
y());
flow_eEvent_ButtonMotion,
mouseEvent->x(), mouseEvent->
y());
} else {
sts = ctx->event_handler_nav(
flow_eEvent_CursorMotion,
pos.x(), pos.
y());
flow_eEvent_CursorMotion,
mouseEvent->x(), mouseEvent->
y());
}
break;
}
...
...
xtt/lib/ge/qt/ge_qt.cqt
View file @
b7d2a844
...
...
@@ -1954,8 +1954,7 @@ GeQt::GeQt(void* x_parent_ctx, ldh_tSesContext x_ldhses, int x_exit_when_close,
add_expanding(vpaned, palbox);
vpaned->addWidget(colpal_main_widget);
((GraphQt*)graph)->create_navigator();
vpaned->addWidget(((GraphQt*)graph)->nav_widget);
vpaned->addWidget(((GraphQt*)graph)->create_navigator());
graph_list = new GeItemViewQt(this);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment