|
|
Button info structure used by myWinMenu and myWinEntries function.
|
|
|
Entry info structure used by myWinEntries function.
|
|
||||||||||||||||||||||||
|
Creates a main window within a progress bar. This function creates a main window within a progress bar and returns the handle. You can call destroyProgressWin to destroy it. Note that you can use SendDlgItemMessage to send a message to the progress bar in the main window in order to update the progress bar.
|
|
||||||||||||||||||||||||||||
|
Creates a status main window. This function creates a status main window and returns the handle to it. You can call destroyStatusWin to destroy it. This function also receives printf-like arguments to format a string.
|
|
||||||||||||||||||||||||||||
|
Creates a tool tip window. This function creates a tool tip window and returns the handle to it. You can call destroyToolTipWin to destroy it. This function also receives printf-like arguments to format a string. Note that the tool tip window will disappear automatically after the specified milliseconds by timeout_ms if timeout_ms is larger than 9 ms.
|
|
|
Destroies progress window. This function destroies the specified progress window hwnd, which is returned by createProgressWin.
|
|
|
Destroies a status window. This function destroies the specified status window hwnd, which is returned by createStatusWin.
|
|
|
Destroies a tool tip window. This function destroies the specified tool tip window hwnd, which is returned by createToolTipWin.
|
|
||||||||||||||||
|
A MiniGUI edition of perror. This function creates a message box by using myMessageBox, and display the current system error message. You can consider it as an alternative of perror.
|
|
||||||||||||||||||||||||
|
Creates a message box. This function creates a message box calling MessageBox and passing hwnd, dwStyle and title to it. This function also receives printf-like arguments to format a string.
|
|
||||||||||||||||||||||||||||
|
Creates a message box within two buttons. This function creates a message box hosted to the main window hwnd, displays a message and an application icon in the message box, and creates two buttons in it. This function also receives printf-like arguments to format a string. This function can be used to prompt the user to choose one item between two.
|
|
||||||||||||||||||||||||||||||||||||
|
Creates a entry main window for the user to enter something. This function creates a entry main window including a few buttons and a few entries. When the user click one of the buttons, this function will return the identifier of the button which leads to close the menu window, and the entered strings.
|
|
||||||||||||||||||||||||
|
Creates a help message window. This function creates a help message window including a scrollable help message and a spin box. When the user click the OK button, this function will return.
|
|
||||||||||||||||||||||||||||||||||||
|
Creates a menu main window for the user to select an item. This function creates a menu main window including a few buttons, and a list box with checkable item. When the user click one of the buttons, this function will return the identifier of the button which leads to close the menu window, and the selections of the items via listItem.
|
|
||||||||||||||||||||||||
|
Creates a message box within only one button. This function creates a message box hosted to the main window hwnd, displays a message and an application icon in the message box, and creates a button which can be used to close the box. This function also receives printf-like arguments to format a string. This function can be used to display a information for the user.
|
|
||||||||||||||||||||||||||||||||
|
Creates a message box within three buttons. This function creates a message box hosted to the main window hwnd, displays a message and an application icon in the message box, and creates three buttons in it. This function also receives printf-like arguments to format a string. This function can be used to prompt the user to choose one item among three choices.
|
|
||||||||||||||||||||||||
|
Resets a tool tip window. This function resets the tool tip window specified by hwnd, including its position, text displayed in it, and the visible status. If the tool tip is invisible, it will become visible. This function also receives printf-like arguments to format a string.
|
1.4.2