工作环境:C ++,窗口 我使用qprocess打开了一个matlab独立应用程序(xx.exe)。当用户按下按钮时,我想将xx.exe带到前面。如何使用Qprocess将xx.exe带到最前面?
答案 0 :(得分:1)
也许QProcess::startDetached()
将为您提供帮助(在我的情况下,此方法将激活窗口)。但是我认为窗口操作(例如 activate , minimize , hide )是操作系统问题。因此,在大多数情况下,您必须请求操作系统进行窗口操作。
这是Windows的一个小例子,您可以尝试
WindowsUtils.h
class WindowsUtils
{
public:
WindowsUtils();
static bool ShowWindow(const qint64& pidQt);
static bool MinimizeWindow(const qint64& pidQt);
static bool RestoreWindow(const qint64& pidQt);
};
WindowsUtils.cpp
#include "WindowsUtils.h"
#include <windows.h>
int g_winState = SW_SHOW;
BOOL CALLBACK EnumWindowsProc(HWND hWnd, LPARAM lParam)
{
// get the window process ID
DWORD searchedProcessId = (DWORD)lParam;
DWORD windowProcessId = 0;
GetWindowThreadProcessId(hWnd,&windowProcessId);
// check the process id match
if (windowProcessId == searchedProcessId){
ShowWindow(hWnd, g_winState);
return FALSE;
}
return TRUE; //continue enumeration
}
WindowsUtils::WindowsUtils()
{
}
bool WindowsUtils::ShowWindow(const qint64 &pidQt)
{
g_winState = SW_SHOW;
return EnumWindows(EnumWindowsProc, (LPARAM)pidQt);
}
bool WindowsUtils::MinimizeWindow(const qint64 &pidQt)
{
g_winState = SW_MINIMIZE;
return EnumWindows(EnumWindowsProc, (LPARAM)pidQt);
}
bool WindowsUtils::RestoreWindow(const qint64 &pidQt)
{
g_winState = SW_RESTORE;
return EnumWindows(EnumWindowsProc, (LPARAM)pidQt);
}
使用
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private slots:
void on_pushButton_3_clicked();
void on_pushButton_4_clicked();
void on_pushButton_5_clicked();
private:
Ui::MainWindow *ui;
qint64 m_pid;
};
void MainWindow::on_pushButton_3_clicked()
{
m_pid = 0;
QProcess::startDetached("notepad.exe", QStringList(), QString(), &m_pid);
}
void MainWindow::on_pushButton_4_clicked()
{
WindowsUtils::RestoreWindow(m_pid);
}
void MainWindow::on_pushButton_5_clicked()
{
WindowsUtils::MinimizeWindow(m_pid);
}
找到here的int g_winState;
的另一个值