gtk_text_insert



Hello,

I use the following functions to print messages for the user on the screen.

It works fine, but I was wondering how many times I can call the function, in
other words, how big can my GTK_TEXT box become before I run into problem.



void print_message(char *my_message)
{
  gtk_text_insert (GTK_TEXT (lookup_widget(test_window,"Test_report")),
                                  NULL, NULL, NULL,
                                 my_message, strlen(my_message));


 if (verbose) printf("%s",my_message);
}






[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]