使用文件对话框获取路径

时间:2017-06-30 11:17:21

标签: c file user-interface winapi

我正在构建要求文件然后过滤它的程序 用户想要的东西(黑白,光滑等)。 我在opencv中使用过滤器和windows.h用于GUI。 但是为了在opencv中将图片加载到Pimage中 - 我需要图像完整路径。 诅咒我可以给用户文本框并说给他写所有路径, 但这将是非常讨厌的程序...

然后我记得在Photoshop和他允许的文件对话框中 我没有写所有路径就加载文件。

谷歌快速搜索给我OPENFILENAME结构, 但是,当我尝试使用给我文件名称的函数时:

if(GetOpenFileName(&ofn))
    {
        printf("File path: %s", szFileName)
    }

它总是在控制台中给我这个错误:

undefined reference to `GetOpenFileNameA@4'
collect2: ld returned 1 exit status

吮!

总结一下, 我只想要一个很好的代码,我会按下#34;加载"按钮, 文件对话框将打开,文件的完整路径将打印到屏幕上。到目前为止这是我的代码(我和我的好朋友Code Blocks):

#if defined(UNICODE) && !defined(_UNICODE)
    #define _UNICODE
#elif defined(_UNICODE) && !defined(UNICODE)
    #define UNICODE
#endif

#include <tchar.h>
#include <windows.h>
#define HEIGHT 500
#define WIDTH 500
/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
HWND button_1;
/*  Make the class name into a global variable  */
TCHAR szClassName[ ] = _T("windows form");

int WINAPI WinMain (HINSTANCE hThisInstance,
                     HINSTANCE hPrevInstance,
                     LPSTR lpszArgument,
                     int nCmdShow)
{
    HWND hwnd;               /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */

    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);

    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default colour as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;

    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;

    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           _T("windows form"),       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           WIDTH,                 /* The programs width */
           HEIGHT,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nCmdShow);

    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }

    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}


/*  This function is called by the Windows function DispatchMessage()  */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch (message)                  /* handle the messages */
    {
        case WM_CREATE:
            button_1 = CreateWindow("BUTTON",
                "Open file", WS_VISIBLE | WS_CHILD | WS_BORDER,
                WIDTH/2, HEIGHT/2, 100, 40, hwnd, (HMENU) 1, NULL, NULL);
                break;
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }

    return 0;
}

1 个答案:

答案 0 :(得分:-1)

如果没有定义OPENFILENAME结构,您根本无法使用GetOpenFileName()。

LPSTR filebuff = new char[256];
OPENFILENAME open = { 0 };
            open.lStructSize = sizeof(OPENFILENAME);
            open.hwndOwner = window; //Handle to the parent window
            open.lpstrFilter = "Image Files(.jpg|.png|.bmp|.jpeg)\0*.jpg;*.png;*.bmp;*.jpeg\0\0";
            open.lpstrCustomFilter = NULL;
            open.lpstrFile = filebuff;
            open.lpstrFile[0] = '\0';
            open.nMaxFile = 256;
            open.nFilterIndex = 1;
            open.lpstrInitialDir = NULL;
            open.lpstrTitle = "Select An Image File\0";
            open.nMaxFileTitle = strlen("Select an image file\0");
            open.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST | OFN_EXPLORER;

然后使用

if (GetOpenFileName(&open))
{
 printf("File name:%s", open.lpstrFile);
}

以上代码选择图片文件,替换 lpstrFilter 值以过滤扩展名,lpstrTitle和 nMaxFileTitle ()满足您的需求。

以下是OPENFILENAME stuct documentation

显示对话框需要所有属性!