0

タイプ GtkWidget の 10x20 配列を作成したいと考えています。それらのそれぞれに、ラベルを付ける GtkEventBox を作成したいと考えています。

2D GtkWidget* 配列を作成して使用するにはどうすればよいですか?

これは私がこれまでに試したことです:

//global variable:
GtkWidget *labelPlate[ROWS][COLUMNS];
...
...
inside the function that creates the table and attaches the event boxes to it
//my table, where the EventBoxes will be attached to
GtkWidget *finalPlateTable = gtk_table_new (10, 20, TRUE);

int i, j;
for(i = 0; i<ROWS; i++){
    for(j=0 ; j<COLUMNS; j++){
        //Make a char with the current float and create a label with it.

        char finalString[14];
        sprintf(finalString, "%.2f", plate[i][j]);

        GtkWidget *label = gtk_label_new(finalString);;

        //Labels cannot have bg color, so attach each label to an event box
        /*HERE I GET SEG FAULT*/
        labelPlate[i][j]=gtk_event_box_new();

                    //adding the label to my eventbox
        gtk_container_add(GTK_CONTAINER(labelPlate[i][j]), label);

        //Add the corresponding bg color to each event box
        GdkColor color;
        switch(scalePlate[i][j]){
                            ...
                            ...
            break;
        }
                    //coloring the event box with the corresponding background
        gtk_widget_modify_bg ( GTK_WIDGET(labelPlate[i][j]), GTK_STATE_NORMAL, &color);
                    //attach the event box to the appropriate location of my table
        gtk_table_attach_defaults (GTK_TABLE (finalPlateTable), labelPlate[i][j], j, j+1, i, i+1);
        //show them!
        gtk_widget_show(label);
        gtk_widget_realize(labelPlate[i][j]);
    }
}
//adding the table to my vertical box, and show both of them
gtk_box_pack_start(GTK_BOX (verticalBox), finalPlateTable, TRUE, TRUE, 10);

gtk_widget_show (finalPlateTable);
gtk_widget_show (verticalBox);

私はCにかなり慣れていないため、使用方法がわかりませんmalloc(しかし、今は使用する必要があると思います)。

4

1 に答える 1

0

私は解決策を見つけました:

配列を次のように初期化します。

GtkWidget **myarray;
myarray = g_new(GtkWidget *, ROWS*COLUMNS);

次に、関数を使用して特定の行と列にアクセスします。

int returnPosAt(int row, int column){
    return row*COLUMNS+column;
}

それで、あなたは呼び出すことができます

myarray[returnPosAt(i, j)]=gtk_event_box_new();

したがって、実際には 1D 配列があり、関数を呼び出すことで、2D 位置 (i, j) の対応する 1D pos を取得します。

于 2013-03-31T10:15:59.787 に答える