免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1835 | 回复: 1
上一主题 下一主题

FLTK通用控件及属性 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-05-07 22:54 |只看该作者 |倒序浏览

                               
[点评:FLTK是一个简单的,轻型的C++库。它所生成的应用程序非常小。这是他的优点。不过,FLTK对汉字的支持不是特别好,我认为对于一些小型的应用,FLTK是适合的,但对于大型程序,FLTK则就不是特别理想了.]
This chapter describes many of the widgets that are provided with FLTK and covers how to query and set the standard attributes.
Buttons
FLTK provides many types of buttons:



Figure 3-1: FLTK Button Widgets
All of these buttons just need the corresponding  header file. The constructor takes the bounding box of the button and optionally a label string:
    Fl_Button *button = new Fl_Button(x, y, width, height, "label");
    Fl_Light_Button *lbutton = new Fl_Light_Button(x, y, width, height);
    Fl_Round_Button *rbutton = new Fl_Round_Button(x, y, width, height, "label");

Each button has an associated
[color="#0000ff"]type()
which allows it to behave as a push button, toggle button, or radio button:
    button->type(FL_NORMAL_BUTTON);
    lbutton->type(FL_TOGGLE_BUTTON);
    rbutton->type(FL_RADIO_BUTTON);

For toggle and radio buttons, the
[color="#0000ff"]value()
method returns the current button state (0 = off, 1 = on). The
[color="#0000ff"]set()
and
[color="#0000ff"]clear()
methods can be used on toggle buttons to turn a toggle button on or off, respectively. Radio buttons can be turned on with the
[color="#0000ff"]setonly()
method; this will also turn off other radio buttons in the same group.
Text
FLTK provides several text widgets for displaying and receiving text:

The Fl_Output and Fl_Multiline_Output widgets allow the user to copy text from the output field but not change it.
The
[color="#0000ff"]value()
method is used to get or set the string that is displayed:
    Fl_Input *input = new Fl_Input(x, y, width, height, "label");
    input->value("Now is the time for all good men...");

The string is copied to the widget's own storage when you set the value() of the widget.
The Fl_Text_Display and Fl_Text_Editor widgets use an associated Fl_Text_Buffer class for the value, instead of a simple string.
Valuators
Unlike text widgets, valuators keep track of numbers instead of strings. FLTK provides the following valuators:



Figure 3-2: FLTK valuator widgets
The
[color="#0000ff"]value()
method gets and sets the current value of the widget. The
[color="#0000ff"]minimum()
and
[color="#0000ff"]maximum()
methods set the range of values that are reported by the widget.
Groups
The Fl_Group widget class is used
as a general purpose "container" widget. Besides grouping radio
buttons, the groups are used to encapsulate windows, tabs, and scrolled
windows. The following group classes are available with FLTK:

Setting the Size and Position of Widgets
The size and position of widgets is usually set when you create them. You can access them with the x(), y(), w(), and h() methods.
You can change the size and position by using the position() , resize(), and size() methods:
    button->position(x, y);
    group->resize(x, y, width, height);
    window->size(width, height);

If you change a widget's size or position after it is displayed you will have to call redraw() on the widget's parent.
Colors
FLTK stores the colors of widgets as an 32-bit unsigned number that
is either an index into a color palette of 256 colors or a 24-bit RGB
color. The color palette is not the X or WIN32 colormap, but instead is an internal table with fixed contents.
There are symbols for naming some of the more common colors:
  • FL_BLACK
  • FL_RED
  • FL_GREEN
  • FL_YELLOW
  • FL_BLUE
  • FL_MAGENTA
  • FL_CYAN
  • FL_WHITE

These symbols are the default colors for all FLTK widgets. They are explained in more detail in the chapter
[color="#0000ff"]Enumerations
  • FL_FOREGROUND_COLOR
  • FL_BACKGROUND_COLOR
  • FL_INACTIVE_COLOR
  • FL_SELECTION_COLOR

RGB colors can be set using the
[color="#0000ff"]fl_rgb_color()
function:
    Fl_Color c = fl_rgb_color(85, 170, 255);

The widget color is set using the color() method:
    button->color(FL_RED);

Similarly, the label color is set using the labelcolor() method:
    button->labelcolor(FL_WHITE);

Box Types
The type Fl_Boxtype stored and returned in
[color="#0000ff"]Fl_Widget::box()
is an enumeration defined in
[color="#0000ff"]
. Figure 3-3 shows the standard box types included with FLTK.


Figure 3-3: FLTK box types
FL_NO_BOX means nothing is drawn at all, so whatever is already on the screen remains. The FL_..._FRAME
types only draw their edges, leaving the interior unchanged. The blue
color in Figure 3-3 is the area that is not drawn by the frame types.
Making Your Own Boxtypes
You can define your own boxtypes by making a small function that draws the box and adding it to the table of boxtypes.
Note:
This interface has changed in FLTK 2.0!
The Drawing Function
The drawing function is passed the bounding box and background color for the widget:
    void xyz_draw(int x, int y, int w, int h, Fl_Color c) {
    ...
    }

A simple drawing function might fill a rectangle with the given color and then draw a black outline:
    void xyz_draw(int x, int y, int w, int h, Fl_Color c) {
      fl_color(c);
      fl_rectf(x, y, w, h);
      fl_color(FL_BLACK);
      fl_rect(x, y, w, h);
    }

Adding Your Box Type
The Fl::set_boxtype() method adds or replaces the specified box type:
    #define XYZ_BOX FL_FREE_BOXTYPE
    Fl::set_boxtype(XYZ_BOX, xyz_draw, 1, 1, 2, 2);

The last 4 arguments to Fl::set_boxtype() are the offsets for the x, y, width, and height values that should be subtracted when drawing the label inside the box.
Labels and Label Types
The label(), align(), labelfont(), labelsize(), labeltype(), image(), and deimage() methods control the labeling of widgets.
label()
The label() method sets the string
that is displayed for the label. Symbols can be included with the label
string by escaping them using the "@" symbol - "@@" displays a single
at sign. Figure 3-4 shows the available symbols.


Figure 3-4: FLTK label symbols
The @ sign may also be followed by the following optional "formatting" characters, in this order:
  • '#' forces square scaling, rather than distortion to the widget's shape.
  • +[1-9] or -[1-9] tweaks the scaling a little bigger or smaller.
  • '$' flips the symbol horizontaly, '%' flips it verticaly.
  • [0-9] - rotates by a multiple of 45 degrees. '5' and '6' do no
    rotation while the others point in the direction of that key on a
    numeric keypad. '0', followed by four more digits rotates the symbol by
    that amount in degrees.

Thus, to show a very large arrow pointing downward you would use the label string "@+92->".
align()
The align() method positions the label. The following constants are defined and may be OR'd together as needed:
  • FL_ALIGN_CENTER - center the label in the widget.
  • FL_ALIGN_TOP - align the label at the top of the widget.
  • FL_ALIGN_BOTTOM - align the label at the bottom of the widget.
  • FL_ALIGN_LEFT - align the label to the left of the widget.
  • FL_ALIGN_RIGHT - align the label to the right of the widget.
  • FL_ALIGN_INSIDE - align the label inside the widget.
  • FL_ALIGN_CLIP - clip the label to the widget's bounding box.
  • FL_ALIGN_WRAP - wrap the label text as needed.
  • FL_TEXT_OVER_IMAGE - show the label text over the image.
  • FL_IMAGE_OVER_TEXT - show the label image over the text (default).

labeltype()
The labeltype() method sets the type of the label. The following standard label types are included:
  • FL_NORMAL_LABEL - draws the text.
  • FL_NO_LABEL - does nothing.
  • FL_SHADOW_LABEL - draws a drop shadow under the text.
  • FL_ENGRAVED_LABEL - draws edges as though the text is engraved.
  • FL_EMBOSSED_LABEL - draws edges as thought the text is raised.
  • FL_ICON_LABEL - draws the icon associated with the text.

image() and deimage()
The image() and deimage() methods set an image that will be displayed with the widget. The deimage() method sets the image that is shown when the widget is inactive, while the image() method sets the image that is shown when the widget is active.
To make an image you use a subclass of
[color="#0000ff"]Fl_Image
.
Making Your Own Label Types
Label types are actually indexes into a table of functions that draw
them. The primary purpose of this is to use this to draw the labels in
ways inaccessible through the fl_font mechanisim (e.g. FL_ENGRAVED_LABEL) or with program-generated letters or symbology.
Note:
This interface has changed in FLTK 2.0!
Label Type Functions
To setup your own label type you will need to write two functions:
one to draw and one to measure the label. The draw function is called
with a pointer to a Fl_Label structure containing the label information, the bounding box for the label, and the label alignment:
    void xyz_draw(const Fl_Label *label, int x, int y, int w, int h, Fl_Align align) {
    ...
    }

The label should be drawn inside this bounding box, even if FL_ALIGN_INSIDE is not enabled. The function is not called if the label value is NULL.
The measure function is called with a pointer to a Fl_Label structure and references to the width and height:
    void xyz_measure(const Fl_Label *label, int &w, int &h) {
    ...
    }

The function should measure the size of the label and set w and h to the size it will occupy.
Adding Your Label Type
The Fl::set_labeltype method creates a label type using your draw and measure functions:
    #define XYZ_LABEL FL_FREE_LABELTYPE
    Fl::set_labeltype(XYZ_LABEL, xyz_draw, xyz_measure);

The label type number n can be any integer value starting at the constant FL_FREE_LABELTYPE. Once you have added the label type you can use the labeltype() method to select your label type.
The Fl::set_labeltype method can also be used to overload an existing label type such as FL_NORMAL_LABEL.
Callbacks
Callbacks are functions that are called when the value of a widget changes. A callback function is sent a Fl_Widget pointer of the widget that changed and a pointer to data that you provide:
    void xyz_callback(Fl_Widget *w, void *data) {
    ...
    }

The callback() method sets the callback function for a widget. You can optionally pass a pointer to some data needed for the callback:
    int xyz_data;
    button->callback(xyz_callback, &xyz_data);

Normally callbacks are performed only when the value of the widget changes. You can change this using the
[color="#0000ff"]when()
method:
    button->when(FL_WHEN_NEVER);
    button->when(FL_WHEN_CHANGED);
    button->when(FL_WHEN_RELEASE);
    button->when(FL_WHEN_RELEASE_ALWAYS);
    button->when(FL_WHEN_ENTER_KEY);
    button->when(FL_WHEN_ENTER_KEY_ALWAYS);
    button->when(FL_WHEN_CHANGED | FL_WHEN_NOT_CHANGED);

Note:
You cannot delete a widget inside a callback, as the widget may
still be accessed by FLTK after your callback is completed. Instead,
use the
[color="#0000ff"]Fl::delete_widget()
method to mark your widget for deletion when it is safe to do so.
Hint:
Many programmers new to FLTK or C++ try to use a non-static class
method instead of a static class method or function for their callback.
Since callbacks are done outside a C++ class, the this pointer is not initialized for class methods.
To work around this problem, define a static method in your class
that accepts a pointer to the class, and then have the static method
call the class method(s) as needed. The data pointer you provide to the
callback() method of the widget can be a pointer to the instance of your class.
class foo {
  void my_callback(Widget *);
  static void my_static_callback(Widget *w, foo *f) { f->my_callback(w); }
  ...
}
...
w->callback(my_static_callback, this);
Shortcuts
Shortcuts are key sequences that activate widgets such as buttons or menu items. The shortcut() method sets the shortcut for a widget:
    button->shortcut(FL_Enter);
    button->shortcut(FL_SHIFT + 'b');
    button->shortcut(FL_CTRL + 'b');
    button->shortcut(FL_ALT + 'b');
    button->shortcut(FL_CTRL + FL_ALT + 'b');
    button->shortcut(0); // no shortcut

The shortcut value is the key event value - the ASCII value or one of the special keys like
[color="#0000ff"]FL_Enter
- combined with any modifiers like Shift, Alt, and Control.
               
               
               
               
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/49742/showart_680538.html

论坛徽章:
0
2
发表于 2014-07-14 14:06
不错的控件知识,感谢分享
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP