Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository 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
Santiago
sakia
Commits
059bda49
Commit
059bda49
authored
10 years ago
by
Vincent Texier
Browse files
Options
Downloads
Patches
Plain Diff
add about popup window
add about menu to open the about popup window
parent
57e00bcf
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
res/ui/about.ui
+65
-0
65 additions, 0 deletions
res/ui/about.ui
res/ui/mainwindow.ui
+24
-1
24 additions, 1 deletion
res/ui/mainwindow.ui
src/cutecoin/gui/mainwindow.py
+27
-1
27 additions, 1 deletion
src/cutecoin/gui/mainwindow.py
with
116 additions
and
2 deletions
res/ui/about.ui
0 → 100644
+
65
−
0
View file @
059bda49
<?xml version="1.0" encoding="UTF-8"?>
<ui
version=
"4.0"
>
<class>
AboutPopup
</class>
<widget
class=
"QDialog"
name=
"AboutPopup"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
<y>
0
</y>
<width>
297
</width>
<height>
264
</height>
</rect>
</property>
<property
name=
"windowTitle"
>
<string>
About
</string>
</property>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout_2"
>
<item>
<layout
class=
"QVBoxLayout"
name=
"verticalLayout"
>
<item>
<widget
class=
"QLabel"
name=
"label"
>
<property
name=
"text"
>
<string>
TextLabel
</string>
</property>
<property
name=
"alignment"
>
<set>
Qt::AlignCenter
</set>
</property>
</widget>
</item>
<item>
<widget
class=
"QDialogButtonBox"
name=
"buttonBox"
>
<property
name=
"orientation"
>
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"standardButtons"
>
<set>
QDialogButtonBox::Ok
</set>
</property>
<property
name=
"centerButtons"
>
<bool>
true
</bool>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections>
<connection>
<sender>
buttonBox
</sender>
<signal>
accepted()
</signal>
<receiver>
AboutPopup
</receiver>
<slot>
accept()
</slot>
<hints>
<hint
type=
"sourcelabel"
>
<x>
248
</x>
<y>
254
</y>
</hint>
<hint
type=
"destinationlabel"
>
<x>
157
</x>
<y>
274
</y>
</hint>
</hints>
</connection>
</connections>
</ui>
This diff is collapsed.
Click to expand it.
res/ui/mainwindow.ui
+
24
−
1
View file @
059bda49
...
...
@@ -33,7 +33,7 @@
<x>
0
</x>
<y>
0
</y>
<width>
681
</width>
<height>
2
0
</height>
<height>
2
5
</height>
</rect>
</property>
<widget
class=
"QMenu"
name=
"menu_account"
>
...
...
@@ -53,6 +53,7 @@
<addaction
name=
"action_export"
/>
<addaction
name=
"action_import"
/>
<addaction
name=
"separator"
/>
<addaction
name=
"actionAbout"
/>
<addaction
name=
"action_quit"
/>
</widget>
<widget
class=
"QMenu"
name=
"menu_contacts"
>
...
...
@@ -176,6 +177,11 @@
<string>
Set as default
</string>
</property>
</action>
<action
name=
"actionAbout"
>
<property
name=
"text"
>
<string>
About
</string>
</property>
</action>
</widget>
<resources/>
<connections>
...
...
@@ -323,6 +329,22 @@
</hint>
</hints>
</connection>
<connection>
<sender>
actionAbout
</sender>
<signal>
triggered()
</signal>
<receiver>
MainWindow
</receiver>
<slot>
open_about_popup()
</slot>
<hints>
<hint
type=
"sourcelabel"
>
<x>
-1
</x>
<y>
-1
</y>
</hint>
<hint
type=
"destinationlabel"
>
<x>
340
</x>
<y>
274
</y>
</hint>
</hints>
</connection>
</connections>
<slots>
<slot>
open_add_account_dialog()
</slot>
...
...
@@ -335,5 +357,6 @@
<slot>
export_account()
</slot>
<slot>
open_certification_dialog()
</slot>
<slot>
set_as_default_account()
</slot>
<slot>
open_about_popup()
</slot>
</slots>
</ui>
This diff is collapsed.
Click to expand it.
src/cutecoin/gui/mainwindow.py
+
27
−
1
View file @
059bda49
...
...
@@ -4,7 +4,7 @@ Created on 1 févr. 2014
@author: inso
'''
from
cutecoin.gen_resources.mainwindow_uic
import
Ui_MainWindow
from
PyQt5.QtWidgets
import
QMainWindow
,
QAction
,
QFileDialog
,
QProgressBar
,
QMessageBox
,
QLabel
from
PyQt5.QtWidgets
import
QMainWindow
,
QAction
,
QFileDialog
,
QProgressBar
,
QMessageBox
,
QLabel
,
QDialog
from
PyQt5.QtCore
import
QSignalMapper
,
QModelIndex
,
QObject
,
QThread
,
pyqtSlot
,
pyqtSignal
from
PyQt5.QtGui
import
QIcon
from
.process_cfg_account
import
ProcessConfigureAccount
...
...
@@ -16,6 +16,7 @@ from .certification import CertificationDialog
from
.password_asker
import
PasswordAskerDialog
from
..tools.exceptions
import
NoPeerAvailable
from
..__init__
import
__version__
from
cutecoin.gen_resources.about_uic
import
Ui_AboutPopup
import
logging
import
requests
...
...
@@ -127,6 +128,31 @@ class MainWindow(QMainWindow, Ui_MainWindow):
dialog
.
accepted
.
connect
(
self
.
refresh_communities
)
dialog
.
exec_
()
def
open_about_popup
(
self
):
"""
Open about popup window
"""
aboutDialog
=
QDialog
(
self
)
aboutUi
=
Ui_AboutPopup
()
aboutUi
.
setupUi
(
aboutDialog
)
text
=
"""
<h1>Cutecoin</h1>
<p>Python/Qt uCoin client</p>
<p>Version : {:}</p>
<p>License : MIT</p>
<p><b>Authors</b></p>
<p>inso</p>
<p>vit</p>
<p>canercandan</p>
"""
.
format
(
__version__
)
aboutUi
.
label
.
setText
(
text
)
aboutDialog
.
show
()
def
refresh_wallets
(
self
):
currency_tab
=
self
.
currencies_tabwidget
.
currentWidget
()
if
currency_tab
:
...
...
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