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
8f9c3183
Commit
8f9c3183
authored
Jan 07, 2019
by
Christoffer Ackelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QT: Fixed height on statusbar.
parent
8e68f518
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
19 deletions
+7
-19
profibus/exe/profinet_viewer/qt/pn_viewer_qt.cqt
profibus/exe/profinet_viewer/qt/pn_viewer_qt.cqt
+1
-3
profibus/lib/cow/qt/cow_pb_gsd_attr_qt.cqt
profibus/lib/cow/qt/cow_pb_gsd_attr_qt.cqt
+1
-3
profibus/lib/cow/qt/cow_pn_gsdml_attr_qt.cqt
profibus/lib/cow/qt/cow_pn_gsdml_attr_qt.cqt
+1
-3
sev/exe/sev_xtt/qt/xtt_tbl_qt.cqt
sev/exe/sev_xtt/qt/xtt_tbl_qt.cqt
+1
-3
wb/lib/wb/qt/wb_foe_qt.cqt
wb/lib/wb/qt/wb_foe_qt.cqt
+1
-2
xtt/lib/cow/qt/cow_tree_qt.cqt
xtt/lib/cow/qt/cow_tree_qt.cqt
+1
-2
xtt/lib/ge/qt/ge_qt.cqt
xtt/lib/ge/qt/ge_qt.cqt
+1
-3
No files found.
profibus/exe/profinet_viewer/qt/pn_viewer_qt.cqt
View file @
8f9c3183
...
...
@@ -97,14 +97,12 @@ PnViewerQt::PnViewerQt(const char* v_name, const char* v_device,
// Statusbar and cmd input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel("");
msg_label->setFixedHeight(25);
cmd_prompt = new QLabel("value > ");
cmd_prompt->setFixedHeight(25);
value_recall = new CoWowRecall();
cmd_entry = new CoWowEntryQt(value_recall);
cmd_entry->setFixedHeight(25);
QObject::connect(cmd_entry, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_cmd_entry()));
...
...
profibus/lib/cow/qt/cow_pb_gsd_attr_qt.cqt
View file @
8f9c3183
...
...
@@ -271,13 +271,11 @@ GsdAttrQt::GsdAttrQt(QWidget* a_parent_wid, void* a_parent_ctx, void* a_object,
// Status bar and value input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel("");
msg_label->setFixedHeight(25);
cmd_prompt = new QLabel("value > ");
cmd_prompt->setFixedHeight(25);
cmd_entry = new CoWowEntryQt(&value_recall);
cmd_entry->setFixedHeight(25);
QObject::connect(cmd_entry, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_cmd_entry()));
...
...
profibus/lib/cow/qt/cow_pn_gsdml_attr_qt.cqt
View file @
8f9c3183
...
...
@@ -326,13 +326,11 @@ GsdmlAttrQt::GsdmlAttrQt(QWidget* a_parent_wid, void* a_parent_ctx,
// Status bar and value input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel("");
msg_label->setFixedHeight(25);
cmd_prompt = new QLabel("value > ");
cmd_prompt->setFixedHeight(25);
cmd_entry = new CoWowEntryQt(&value_recall);
cmd_entry->setFixedHeight(25);
QObject::connect(cmd_entry, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_cmd_entry()));
...
...
sev/exe/sev_xtt/qt/xtt_tbl_qt.cqt
View file @
8f9c3183
...
...
@@ -299,14 +299,12 @@ XttTblQt::XttTblQt(QWidget* a_parent_wid, void* a_parent_ctx,
// Statusbar and cmd input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel("");
msg_label->setFixedHeight(25);
cmd_prompt = new QLabel("value > ");
cmd_prompt->setFixedHeight(25);
cmd_recall = new CoWowRecall();
cmd_entry = new CoWowEntryQt(cmd_recall);
cmd_entry->setFixedHeight(25);
QObject::connect(cmd_entry, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_cmd_input()));
...
...
wb/lib/wb/qt/wb_foe_qt.cqt
View file @
8f9c3183
...
...
@@ -1026,10 +1026,9 @@ pwr_tStatus WFoeQt::create_window(int x_top, int y_top, int width_adb,
// Statusbar and cmd input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
label = new QLabel("");
label->setFixedHeight(25);
textinput = new QLineEdit();
textinput->setFixedHeight(25);
QObject::connect(textinput, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_textinput()));
...
...
xtt/lib/cow/qt/cow_tree_qt.cqt
View file @
8f9c3183
...
...
@@ -187,9 +187,8 @@ CowTreeQt::CowTreeQt(QWidget* a_parent_wid, void* a_parent_ctx,
// Statusbar
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel("");
msg_label->setFixedHeight(25);
statusbar->addWidget(msg_label);
treenav = new TreeNavQt(this, toplevel, itemlist, item_cnt, options,
...
...
xtt/lib/ge/qt/ge_qt.cqt
View file @
8f9c3183
...
...
@@ -1872,17 +1872,15 @@ GeQt::GeQt(void* x_parent_ctx, QWidget* x_parent_widget,
// Statusbar and cmd input
QStatusBar* statusbar = new QStatusBar();
statusbar->setFixedHeight(25);
msg_label = new QLabel(fl(""));
msg_label->setFixedHeight(25);
cmd_prompt = new QLabel(fl("value > "));
cmd_prompt->setFixedHeight(25);
text_recall = new CoWowRecall();
name_recall = new CoWowRecall();
value_recall = new CoWowRecall();
cmd_recall = new CoWowRecall();
recall_entry = new CoWowEntryQt(cmd_recall);
recall_entry->setFixedHeight(25);
cursor_position = new QLabel(fl(""));
QObject::connect(recall_entry, SIGNAL(returnPressed()), toplevel,
SLOT(valchanged_cmd_entry()));
...
...
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