mirror of
https://github.com/fltk/fltk.git
synced 2026-05-27 19:10:24 +08:00
Fix "\todo provide user documentation for fl_set_status function"
This commit is contained in:
@@ -1120,7 +1120,6 @@ FL_EXPORT const char *fl_expand_text(const char *from, char *buf, int maxbuf, do
|
|||||||
int &n, double &width, int wrap, int draw_symbols = 0);
|
int &n, double &width, int wrap, int draw_symbols = 0);
|
||||||
|
|
||||||
// XIM:
|
// XIM:
|
||||||
/** \todo provide user documentation for fl_set_status function */
|
|
||||||
FL_EXPORT void fl_set_status(int X, int Y, int W, int H);
|
FL_EXPORT void fl_set_status(int X, int Y, int W, int H);
|
||||||
/** Inform text input methods about the current text insertion cursor.
|
/** Inform text input methods about the current text insertion cursor.
|
||||||
\param font Font currently in use in text input.
|
\param font Font currently in use in text input.
|
||||||
|
|||||||
@@ -60,6 +60,11 @@ void fl_reset_spot()
|
|||||||
Fl::screen_driver()->reset_spot();
|
Fl::screen_driver()->reset_spot();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Related to text input methods under X11.
|
||||||
|
This function is presently used only by the \c utf8 test application and only for the X11 platform.
|
||||||
|
This function is apparently not indispensable for text input to work correctly
|
||||||
|
as suggested by other apps that don't use it (e.g., editor).
|
||||||
|
*/
|
||||||
void fl_set_status(int X, int Y, int W, int H)
|
void fl_set_status(int X, int Y, int W, int H)
|
||||||
{
|
{
|
||||||
Fl::screen_driver()->set_status(X, Y, W, H);
|
Fl::screen_driver()->set_status(X, Y, W, H);
|
||||||
|
|||||||
Reference in New Issue
Block a user