Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
0ff3e1a9
Commit
0ff3e1a9
authored
Jun 28, 2010
by
Dan Pascu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust presence status font to fix the combo box
parent
2e1336d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
10 deletions
+26
-10
mainwindow.py
blink/mainwindow.py
+26
-10
No files found.
blink/mainwindow.py
View file @
0ff3e1a9
...
...
@@ -7,7 +7,7 @@ __all__ = ['MainWindow']
from
PyQt4
import
uic
from
PyQt4.QtCore
import
Qt
from
PyQt4.QtGui
import
QBrush
,
QColor
,
Q
Painter
,
QPen
,
QPixmap
,
QStyle
,
QStyleOptionFrameV2
from
PyQt4.QtGui
import
QBrush
,
QColor
,
Q
FontMetrics
,
QPainter
,
QPen
,
QPixmap
,
QStyle
,
QStyleOptionComboBox
,
QStyleOptionFrameV2
from
application.notification
import
IObserver
,
NotificationCenter
from
application.python.util
import
Null
...
...
@@ -34,15 +34,7 @@ class MainWindow(base_class, ui_class):
super
(
MainWindow
,
self
)
.
__init__
(
parent
)
with
Resources
.
directory
:
self
.
setupUi
(
self
)
# adjust search box height depending on theme as the value set in designer isn't suited for all themes
search_box
=
self
.
search_box
option
=
QStyleOptionFrameV2
()
search_box
.
initStyleOption
(
option
)
frame_width
=
search_box
.
style
()
.
pixelMetric
(
QStyle
.
PM_DefaultFrameWidth
,
option
,
search_box
)
if
frame_width
<
4
:
search_box
.
setMinimumHeight
(
20
+
2
*
frame_width
)
self
.
setupUi
()
self
.
setWindowTitle
(
'Blink'
)
self
.
setWindowIconText
(
'Blink'
)
...
...
@@ -109,6 +101,30 @@ class MainWindow(base_class, ui_class):
notification_center
=
NotificationCenter
()
notification_center
.
add_observer
(
self
,
name
=
'SIPApplicationWillStart'
)
def
setupUi
(
self
):
super
(
MainWindow
,
self
)
.
setupUi
(
self
)
# adjust search box height depending on theme as the value set in designer isn't suited for all themes
search_box
=
self
.
search_box
option
=
QStyleOptionFrameV2
()
search_box
.
initStyleOption
(
option
)
frame_width
=
search_box
.
style
()
.
pixelMetric
(
QStyle
.
PM_DefaultFrameWidth
,
option
,
search_box
)
if
frame_width
<
4
:
search_box
.
setMinimumHeight
(
20
+
2
*
frame_width
)
# adjust status combo-box font size to fit the combo-box
option
=
QStyleOptionComboBox
()
self
.
status
.
initStyleOption
(
option
)
frame_width
=
self
.
status
.
style
()
.
pixelMetric
(
QStyle
.
PM_DefaultFrameWidth
,
option
,
self
.
status
)
font
=
self
.
status
.
font
()
font
.
setFamily
(
'Sans Serif'
)
font
.
setPointSize
(
font
.
pointSize
()
-
1
)
# make it 1 point smaller then the default font size
font_metrics
=
QFontMetrics
(
font
)
if
font_metrics
.
height
()
>
self
.
status
.
maximumHeight
()
-
2
*
frame_width
:
pixel_size
=
11
-
(
frame_width
-
2
)
# subtract 1 pixel for every frame pixel over 2 pixels
font
.
setPixelSize
(
pixel_size
)
self
.
status
.
setFont
(
font
)
def
set_user_icon
(
self
,
image_file_name
):
pixmap
=
QPixmap
(
32
,
32
)
pixmap
.
fill
(
QColor
(
Qt
.
transparent
))
...
...
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