7

我一直在尝试使用 Qt 和 mingw32 编写一个应用程序来下载图像并将它们设置为背景墙纸。我已经在网上阅读了几篇关于如何在 VB 和 C# 中执行此操作的文章,以及在某种程度上如何在 C++ 中执行此操作。我目前正在SystemParametersInfo使用似乎所有正确参数(没有编译器错误)调用它,但它失败了。没有大铙钹崩溃,只是一个0回归。GetLastError()返回一个同样具有启发性的0.

下面是我正在使用的代码(形式略有修改,因此您不必查看对象内部结构)。

#include <windows.h>
#include <iostream>
#include <QString>

void setWall()
{
    QString filepath = "C:\\Documents and Settings\\Owner\\My Documents\\Wallpapers\\wallpaper.png";
    char path[150];
    strcpy(path, currentFilePath.toStdString().c_str());
    char *pathp;
    pathp = path;

    cout << path;

    int result;
    result = SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, pathp, SPIF_UPDATEINIFILE);

    if (result)
    {
        cout << "Wallpaper set";
    }
    else
    {
        cout << "Wallpaper not set";
        cout << "SPI returned" << result;
    }
}
4

3 回答 3

9

可能SystemParametersInfo是期望一个LPWSTR(指向 的指针wchar_t)。

试试这个:

LPWSTR test = L"C:\\Documents and Settings\\Owner\\My Documents\\Wallpapers\\wallpaper.png";

result = SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, test, SPIF_UPDATEINIFILE);

如果这可行(尝试使用几个不同的文件来确定),您需要将您的文件转换char *LPWSTR. 我不确定 Qt 是否提供这些服务,但可能有帮助的一个功能是MultiByteToWideChar.

于 2010-07-26T01:20:14.200 回答
2
"C:\Documents and Settings\Owner\My Documents\Wallpapers\wallpaper.png";

这不应该是:

"C:\\Documents and Settings\\Owner\\My Documents\\Wallpapers\\wallpaper.png";
于 2010-07-26T01:08:34.973 回答
-1

你 cnSetTimer用来触发一个变化。

#define STRICT 1 
#include <windows.h>
#include <iostream.h>

VOID CALLBACK TimerProc(HWND hWnd, UINT nMsg, UINT nIDEvent, DWORD dwTime) 
{

  LPWSTR wallpaper_file = L"C:\\Wallpapers\\wallpaper.png";
  int return_value = SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, wallpaper_file, SPIF_UPDATEINIFILE);


  cout << "Programmatically change the desktop wallpaper periodically: " << dwTime << '\n';
  cout.flush();
}

int main(int argc, char *argv[], char *envp[]) 
{
    int Counter=0;
    MSG Msg;

    UINT TimerId = SetTimer(NULL, 0, 2000, &TimerProc); //2000 milliseconds

    cout << "TimerId: " << TimerId << '\n';
   if (!TimerId)
    return 16;

   while (GetMessage(&Msg, NULL, 0, 0)) 
   {
        ++Counter;
        if (Msg.message == WM_TIMER)
        cout << "Counter: " << Counter << "; timer message\n";
        else
        cout << "Counter: " << Counter << "; message: " << Msg.message << '\n';
        DispatchMessage(&Msg);
    }

   KillTimer(NULL, TimerId);
return 0;
}
于 2012-08-31T09:15:55.503 回答