如何画一个循环的东西(FLTK / C ++)?

时间:2019-05-01 06:43:17

标签: c++ fltk

我在绘制多条线时遇到问题,它仅显示我使用的一条线

void fl_push_clip(int x, int y, int w, int h);

但似乎没有任何作用

我尝试这样的事情

for (int i = 1; i < 10; i++) {
        int x = 10 * i, y = 10 * i;
        int w = 70 * i, h = 70 * i;
        void fl_push_clip(int x, int y, int w, int h);

        cout << "TEST" << endl;
    }

我使用cout查看for是否有效

#include <FL/Fl.H>
#include <FL/Fl_Widget.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Int_Input.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Color_Chooser.H>

int main(int argc, char ** argv)
{
    int width = 90, height = 80;
    int rowmax = 4, colmax = 7;

    window = new Fl_Window(colmax * width + 20, rowmax * height + 240);
    window->color(FL_DARK_GREEN);

    Fl_Int_Input input = new Fl_Int_Input(140, rowmax * height + 20, colmax * width - 160, 20, "test1");
    input->labelfont(FL_BOLD + FL_ITALIC);

    for (int i = 1; i < 10; i++) {
        int x = 10 * i, y = 10 * i;
        int w = 70 * i, h = 70 * i;
        void fl_push_clip(int x, int y, int w, int h);

        cout << "TEST" << endl;
    }   
    window->end();
    window->show(argc, argv);
    return Fl::run();
}

我希望查看for是否可用于绘制多个形状或找到其他替代方法来做

1 个答案:

答案 0 :(得分:1)

这里的代码是一个声明:它根本不调用代码

while (score[score.length-1] !== 999)

如果您要调用常规用法

for (int i = 1; i < 10; i++) {
    int x = 10 * i, y = 10 * i;
    int w = 70 * i, h = 70 * i;
    void fl_push_clip(int x, int y, int w, int h); // This is a declaration

    cout << "TEST" << endl;
}

您在某处定义了std名称空间吗?