Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
captainwong
jlib
Commits
d0505d80
Commit
d0505d80
authored
Dec 31, 2023
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix qt linux
parent
37f8dbe7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
155 additions
and
151 deletions
+155
-151
QtUtils.h
jlib/qt/QtUtils.h
+155
-151
No files found.
jlib/qt/QtUtils.h
View file @
d0505d80
#
pragma
once
#include "qt_global.h"
#include <cassert>
#include <QString>
#include <QColor>
#include <QPixmap>
#include <QApplication>
#include <QDesktopwidget>
#include <QIcon>
#include <QTimer>
#include <QDir>
#include <QProcess>
#include "QtDebug.h"
#include "QtPathHelper.h"
#include <thread>
#include <chrono>
JLIBQT_NAMESPACE_BEGIN
/**
* @brief 阻塞等待一段时间
* @param ms 等待的毫秒数
*/
inline
void
blocking_wait
(
int
ms
,
QString
log
=
""
)
{
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"in"
;
}
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
milliseconds
(
ms
));
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"out"
;
}
}
/**
* @brief 不阻塞UI响应的情况下,等待一段时间
* @param ms 等待的毫秒数
*/
inline
void
non_blocking_wait_in_ui_thread
(
int
ms
,
QString
log
=
""
)
{
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"in"
;
}
QEventLoop
q
;
QTimer
t
;
t
.
setSingleShot
(
true
);
QObject
::
connect
(
&
t
,
&
QTimer
::
timeout
,
&
q
,
&
QEventLoop
::
quit
);
t
.
start
(
ms
);
q
.
exec
();
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"out"
;
}
}
/**
* @brief 在文件夹中显示
* @param pathIn 若为文件路径则在文件夹中显示,若为文件夹路径则打开改文件夹
*/
inline
void
showInGraphicalShell
(
const
QString
&
pathIn
)
{
QString
param
;
if
(
!
QFileInfo
(
pathIn
).
isDir
())
param
=
QLatin1String
(
"/select,"
);
param
+=
QDir
::
toNativeSeparators
(
pathIn
);
QString
command
=
"explorer.exe "
+
param
;
QProcess
::
startDetached
(
command
);
}
inline
bool
warn_if_load_pixmap_failed
(
QPixmap
&
pixmap
,
QString
icon_path
,
QString
file_line
,
bool
forceUseQss
=
true
)
{
/*if (!QDir().isAbsolutePath(icon_path)) {
icon_path = PathHelper::program() + "/" + icon_path;
}*/
if
(
forceUseQss
&&
!
icon_path
.
startsWith
(
":/"
))
{
icon_path
=
":/"
+
icon_path
;
}
if
(
!
pixmap
.
load
(
icon_path
)
&&
!
pixmap
.
load
(
icon_path
,
"png"
))
{
qCritical
()
<<
file_line
<<
"load pixmap failed: "
<<
icon_path
;
assert
(
0
);
return
false
;
}
return
true
;
}
#define LOAD_PIXMAP_EX(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE)
#define LOAD_PIXMAP_EX2(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE, false)
inline
QIcon
icon_from_path
(
QString
path
,
QSize
icon_sz
)
{
QPixmap
pixmap
;
LOAD_PIXMAP_EX
(
path
);
return
QIcon
(
pixmap
.
scaled
(
icon_sz
,
Qt
::
KeepAspectRatio
,
Qt
::
SmoothTransformation
));
}
inline
void
fill_bg_with_color
(
QWidget
*
widget
,
QColor
color
)
{
if
(
!
widget
)
{
return
;
}
widget
->
setAutoFillBackground
(
true
);
QPalette
palette
;
palette
.
setColor
(
QPalette
::
Background
,
color
);
widget
->
setPalette
(
palette
);
}
inline
void
set_pos
(
QWidget
*
widget
,
QRect
pos
)
{
if
(
!
widget
)
{
return
;
}
widget
->
setFixedSize
(
pos
.
width
(),
pos
.
height
());
widget
->
move
(
pos
.
left
(),
pos
.
top
());
}
inline
void
set_image_bg
(
QWidget
*
widget
,
const
QPixmap
&
pixmap
)
{
if
(
!
widget
||
pixmap
.
isNull
())
return
;
QPalette
palette
;
palette
.
setBrush
(
QPalette
::
Window
,
QBrush
(
pixmap
));
widget
->
setPalette
(
palette
);
}
inline
void
set_image_bg
(
QWidget
*
widget
,
const
QString
&
icon_path
)
{
QPixmap
pixmap
;
if
(
!
LOAD_PIXMAP_EX
(
icon_path
))
{
return
;
}
set_image_bg
(
widget
,
pixmap
);
}
inline
void
center_to_parent
(
QWidget
*
widget
,
QWidget
*
parent
)
{
if
(
!
widget
||
!
parent
)
{
return
;
}
auto
center
=
parent
->
rect
().
center
();
widget
->
move
(
center
.
x
()
-
widget
->
width
()
/
2
,
center
.
y
()
-
widget
->
height
()
/
2
);
}
inline
void
center_to_desktop
(
QWidget
*
widget
)
{
if
(
!
widget
)
{
return
;
}
auto
center
=
QApplication
::
desktop
()
->
availableGeometry
(
widget
).
center
();
widget
->
move
(
center
.
x
()
-
widget
->
width
()
/
2
,
center
.
y
()
-
widget
->
height
()
/
2
);
}
inline
void
center_to_desktop
(
QWidget
*
widget
,
int
new_width
,
int
new_height
)
{
if
(
!
widget
)
{
return
;
}
auto
center
=
QApplication
::
desktop
()
->
availableGeometry
(
widget
).
center
();
widget
->
setFixedSize
(
new_width
,
new_height
);
widget
->
move
(
center
.
x
()
-
new_width
/
2
,
center
.
y
()
-
new_height
/
2
);
widget
->
adjustSize
();
}
JLIBQT_NAMESPACE_END
#
pragma
once
#include "qt_global.h"
#include <cassert>
#include <QString>
#include <QColor>
#include <QPixmap>
#include <QApplication>
#ifdef Q_OS_WIN
#include <QDesktopwidget>
#endif
#include <QIcon>
#include <QTimer>
#include <QDir>
#include <QProcess>
#include "QtDebug.h"
#include "QtPathHelper.h"
#include <thread>
#include <chrono>
JLIBQT_NAMESPACE_BEGIN
/**
* @brief 阻塞等待一段时间
* @param ms 等待的毫秒数
*/
inline
void
blocking_wait
(
int
ms
,
QString
log
=
""
)
{
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"in"
;
}
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
milliseconds
(
ms
));
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"out"
;
}
}
/**
* @brief 不阻塞UI响应的情况下,等待一段时间
* @param ms 等待的毫秒数
*/
inline
void
non_blocking_wait_in_ui_thread
(
int
ms
,
QString
log
=
""
)
{
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"in"
;
}
QEventLoop
q
;
QTimer
t
;
t
.
setSingleShot
(
true
);
QObject
::
connect
(
&
t
,
&
QTimer
::
timeout
,
&
q
,
&
QEventLoop
::
quit
);
t
.
start
(
ms
);
q
.
exec
();
if
(
!
log
.
isEmpty
())
{
MYQDEBUG
<<
log
<<
"out"
;
}
}
#ifdef Q_OS_WIN
/**
* @brief 在文件夹中显示
* @param pathIn 若为文件路径则在文件夹中显示,若为文件夹路径则打开改文件夹
*/
inline
void
showInGraphicalShell
(
const
QString
&
pathIn
)
{
QString
param
;
if
(
!
QFileInfo
(
pathIn
).
isDir
())
param
=
QLatin1String
(
"/select,"
);
param
+=
QDir
::
toNativeSeparators
(
pathIn
);
QString
command
=
"explorer.exe "
+
param
;
QProcess
::
startDetached
(
command
);
}
#endif
inline
bool
warn_if_load_pixmap_failed
(
QPixmap
&
pixmap
,
QString
icon_path
,
QString
file_line
,
bool
forceUseQss
=
true
)
{
/*if (!QDir().isAbsolutePath(icon_path)) {
icon_path = PathHelper::program() + "/" + icon_path;
}*/
if
(
forceUseQss
&&
!
icon_path
.
startsWith
(
":/"
))
{
icon_path
=
":/"
+
icon_path
;
}
if
(
!
pixmap
.
load
(
icon_path
)
&&
!
pixmap
.
load
(
icon_path
,
"png"
))
{
qCritical
()
<<
file_line
<<
"load pixmap failed: "
<<
icon_path
;
assert
(
0
);
return
false
;
}
return
true
;
}
#define LOAD_PIXMAP_EX(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE)
#define LOAD_PIXMAP_EX2(icon_path) JLIBQT_NAMESPACE warn_if_load_pixmap_failed(pixmap, icon_path, JLIBQT_QDEBUG_FILE_LINE_VALUE, false)
inline
QIcon
icon_from_path
(
QString
path
,
QSize
icon_sz
)
{
QPixmap
pixmap
;
LOAD_PIXMAP_EX
(
path
);
return
QIcon
(
pixmap
.
scaled
(
icon_sz
,
Qt
::
KeepAspectRatio
,
Qt
::
SmoothTransformation
));
}
inline
void
fill_bg_with_color
(
QWidget
*
widget
,
QColor
color
)
{
if
(
!
widget
)
{
return
;
}
widget
->
setAutoFillBackground
(
true
);
QPalette
palette
;
palette
.
setColor
(
QPalette
::
Background
,
color
);
widget
->
setPalette
(
palette
);
}
inline
void
set_pos
(
QWidget
*
widget
,
QRect
pos
)
{
if
(
!
widget
)
{
return
;
}
widget
->
setFixedSize
(
pos
.
width
(),
pos
.
height
());
widget
->
move
(
pos
.
left
(),
pos
.
top
());
}
inline
void
set_image_bg
(
QWidget
*
widget
,
const
QPixmap
&
pixmap
)
{
if
(
!
widget
||
pixmap
.
isNull
())
return
;
QPalette
palette
;
palette
.
setBrush
(
QPalette
::
Window
,
QBrush
(
pixmap
));
widget
->
setPalette
(
palette
);
}
inline
void
set_image_bg
(
QWidget
*
widget
,
const
QString
&
icon_path
)
{
QPixmap
pixmap
;
if
(
!
LOAD_PIXMAP_EX
(
icon_path
))
{
return
;
}
set_image_bg
(
widget
,
pixmap
);
}
inline
void
center_to_parent
(
QWidget
*
widget
,
QWidget
*
parent
)
{
if
(
!
widget
||
!
parent
)
{
return
;
}
auto
center
=
parent
->
rect
().
center
();
widget
->
move
(
center
.
x
()
-
widget
->
width
()
/
2
,
center
.
y
()
-
widget
->
height
()
/
2
);
}
inline
void
center_to_desktop
(
QWidget
*
widget
)
{
if
(
!
widget
)
{
return
;
}
auto
center
=
QApplication
::
desktop
()
->
availableGeometry
(
widget
).
center
();
widget
->
move
(
center
.
x
()
-
widget
->
width
()
/
2
,
center
.
y
()
-
widget
->
height
()
/
2
);
}
inline
void
center_to_desktop
(
QWidget
*
widget
,
int
new_width
,
int
new_height
)
{
if
(
!
widget
)
{
return
;
}
auto
center
=
QApplication
::
desktop
()
->
availableGeometry
(
widget
).
center
();
widget
->
setFixedSize
(
new_width
,
new_height
);
widget
->
move
(
center
.
x
()
-
new_width
/
2
,
center
.
y
()
-
new_height
/
2
);
widget
->
adjustSize
();
}
JLIBQT_NAMESPACE_END
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