re:gtk entry

2005-07-26 Thread srinivas
hi; i am having pbm with gtk_entry widget, i created entry with glade, and i accessed entry using lookup_widget, when i tried to get text entered in to entry widget, i am not getting the text. here is the procedure i did, GtkWidget *window_entry1, *window_entry, *entry_sel; const

re:script dir

2005-07-19 Thread srinivas
hi; my glade project not having data, scripts directories. what changes or what am i supposed to add to get those directories in my glade project. thanks; sri ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.or

re:gtk directory

2005-07-16 Thread srinivas
hi; i want to know is there any routines for creating directory browser, with tree like hierarchy. any examples. thanks; srinivas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app

make change

2005-07-14 Thread srinivas
hi; what are all the changes to be made to the Make file or any other files, when a .c file inserted in to the Glade src directory. i am getting no config.h error, though it present. Thanks&Regards; Srinivas ___ gtk-app-devel-list mai

tree expand

2005-07-12 Thread srinivas
thanks for reply; i saw the tutorial, i had one doubt, actually i want to display like in the given fig. but using gtk tree view we have to add pixmaps with text, is there any way by which we can get this image format.i.e with when mouse pressed on '+' it has to expand and if pressed on

tree expand

2005-07-12 Thread srinivas
hi; how to create root tree &subtree with gtktreeview. i.e a tree having parent, child with expand collapse functionality (display with +/- nodes). any samples how to start. thanks; sri ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnom

gtk tree error

2005-07-11 Thread srinivas
**: file gtktreeitem.c: line 298 (gtk_tree_item_set_subtree): assertion `GTK_IS_TREE (subtree)' failed what does it mean, am i supposed to create one more tree for subtree, how to resolve the error; thanks; srinivas. ___ gtk-app-devel-list mailing

tree exapnd

2005-07-11 Thread srinivas
hi; i want to develop a treeview items with expand and collapse. i used gtk_tree but this one is deprecated, so using gtk tree view how can i get this functionality. i.e with main root tree will be having sub tree, and expand collapse functionality. thanks; srinivas

tree append

2005-07-08 Thread srinivas
self). so with the above thing, treeview has to be created once and append to be done. how to get it. developing using glade, c. any examples. thanks; srinivas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/ma

gtktree

2005-07-07 Thread srinivas
hi; i creeated with glade like, window with button_simp_list_get_ent, and treeview_ent_widget, when i press button_simp_list_get_ent, another window with entry_simp_list_entry, and button_simp_entry, will pop up. now when i enter data and press button_simp_entry, the entered text has to app

tree append from entry

2005-07-07 Thread srinivas
0, COL_TEXT); gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), GTK_TREE_VIEW_COLUMN(file_column)); return treeview; } what am i doing wrong; Thanks&Regards; Srinivas ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: gtk_button

2005-06-28 Thread srinivas
the gtk_entry and the count has to be stopped. once the button pressed value in gtk_entry not supposed to increase(vary). in what way i can proceed for it. thanks®ards; Srinivas On Tue, 2005-06-28 at 07:38, Antonio Gomes wrote: > hi > > could you tell us how you are increasing

re:gtk_button

2005-06-27 Thread srinivas
hi; i have a gtk_entry with incrementing count value. i have a gtk_button, now when i pressed the button the count in gtk_entry has to be stopped. how can i proceed for it. thanks; srinivas. ___ gtk-app-devel-list mailing list gtk-app-devel

tree_view

2005-06-24 Thread srinivas
hi ; i have a pbm in populating the tree_view, i want to populate tree_view using file path got from gtk_file_selection_get_filename(fs), how could i populate tree_view. how to insert file selection path to the tree_view widget. Thanks®ards; srinivas

gtk_toggle signal

2005-06-23 Thread srinivas
ggle_button_set_active (GTK_TOGGLE_BUTTON (togglebutton_oam), TRUE); } else { gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (togglebutton_oam), FALSE); } what's wrong with my code. what i have to modi

gtk_treeview

2005-06-23 Thread srinivas
w), column); renderer = gtk_cell_renderer_text_new (); column = gtk_tree_view_column_new_with_attributes ("Filedescription", renderer, "text", COLUMN_FILEDESC, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); i am not s

display path

2005-06-22 Thread srinivas
better. and if so any example for appending file path to that particular widget. thanks®ards; Srinivas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

gtk_clist_append

2005-06-22 Thread srinivas
gchar *)gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)); g_print ("%s\n", data[j]); data_app = (gchar *)&data[j]; gtk_clist_append (GTK_CLIST (clist_sel),(gchar *) data_app); "clist_sel" is the list widget reference using lookup wi

gtk_entry

2005-06-21 Thread srinivas
. how to get that; thanks®ards; srinivas ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: gtk_entry display val

2005-06-21 Thread srinivas
hi all; according to your suggestion i can use spinbutton, but can i display the spinbutton with out arrows. thanks for reply; srinivas. On Tue, 2005-06-21 at 19:21, srinivas wrote: > hi ; > > i want to display int values in gtk_entry widget; > > gchar data=(gchar

gtk_entry display val

2005-06-21 Thread srinivas
hi ; i want to display int values in gtk_entry widget; gchar data=(gchar *)malloc(sizeof(gchar)*MAX_SIZE); for (int_num =0; int_num < data; int_num++) { sprintf (data, "%d", &int_num); gtk_entry_set_text (GTK_ENTRY (win_entry),(gchar *) int_num ); gtk_widget

gtk_entry val

2005-06-19 Thread srinivas
hi; i want to increment the value in gtk_entry widget, the value incremented has to be shown in progressive manner. can i increment the entry widget value, if not what type of widget i have to use. i need to display the value increment. thanks®ards; Srinivas.M _

gtk row append

2005-06-16 Thread srinivas
hi; i have some problem with gtk_clist_append, i can't able to append to clist. i have a application like, fs is the file selection widget object. i am getting the name of file selected as gchar *data; data[j] = (gchar *)gtk_file_selection_get_filename (GTK_FILE_SELECTION (fs)); now i want

gtk_clist

2005-06-15 Thread srinivas
hi ; i have pbm in gtk_clist, i can able to insert in to the list. but the inserted text is appearing only after when i show the window using gtk_widget_show(widget), but i want it as, the inserted text has to display at that time. not after gtk_widget_show. is there any refresh functio

combo entry

2005-06-08 Thread srinivas
hi; how to set a default entry in to the combobox. i am developing with glade. am i supposed to set a signal for the combo box or how to do that. thanks; vasu. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mai

gtk toggle button

2005-06-02 Thread srinivas
hi ; i have two frames created using glade, c. i have a toggle button in one frame, and a radio button in another frame. now i want to toggle the button and change label on it when i selected/ toggled radio button. any examples; thanks; vasu.

get sys date

2005-06-01 Thread srinivas
hi; developing gui with glade, c. i want to know the api or functionality to how to get system date and time, and how to display it to the particular widget. thanks; vasu. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://

gtk entry

2005-06-01 Thread srinivas
hi; i am developing gui with glade, C. i have some pbm in passing signal from one callback signal to another callback. i have a text_entry_activate callback, in which i am checking text entered or not. if not warning msg will pop up. i am getting this functionality. now i have o

gtk clist append

2005-05-30 Thread srinivas
hi; i have a pbm, using fileslection widget i am selecting the file and i would like to append the same to the clist_widget. create_window_new2 is the window name, clist_sst_file_sel is the name of the clist. sst_file_sel = create_window_new2 (); clist_file_sel = lookup_widget (sst_file_s

gtk clist

2005-05-27 Thread srinivas
hi; using folder selection widget i am selecting and displaying the selected files. now i want to append the clist with the selected files from folder selection widget. how can i append/ insert the selected files to the clist. thanks; vasu. __

gtk_text_entry

2005-05-26 Thread srinivas
hi all; i am developing application with glade and c. i have a text_entry widget, and a button widget in different layouts. when i enter the text, and gave enter the text entered is printed to the console according to the pgm i given. now i would like to get the same with button widg

Re: signal passing

2005-05-25 Thread srinivas
hi ; thanks for reply; from on_text_entry_activate i can call the out put handler, but from on_button_next how to call output handler. i am not getting how to get the entry object from interface.c to callbacks.c. in on_text_entry_activate, due to activate signal handler i can able to a

Re: signal passing

2005-05-24 Thread srinivas
hi santhosh; thanks for the reply, i am getting the warning like GLib-GObject-WARNING **: invalid (NULL) pointer instance GLib-GObject-CRITICAL **: g_signal_emit_by_name: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed the code i have in "on_text_entry_activate" call b

re: signal passing

2005-05-23 Thread srinivas
hi; i have gtk_text_entry widget, i had an callback to the text_entry widget "on_entry_activate" and i can able to get the text when enter pressed. now i would like to have same functionality with next button. i had created "on_button_next_clicked" callback. these two are in c

re:gtk_text_entry

2005-05-23 Thread srinivas
GLib-GObject-WARNING **: invalid (NULL) pointer instance GLib-GObject-CRITICAL **: g_signal_connect_data: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed what does these warnings refer to. i got this when i passed signal connect from button click event to text_entry action " change event "

gtk_text_entry

2005-05-19 Thread srinivas
hi; thanks for reply to my queries, still i am facing the same problem, i can't get the text entered in to the gtk_text_entry widget. how can i get the text entered in to the text_entry widget. is any event signal i have to give to text_entry widget. thanks; vasu. ___

Re: gtk text entry

2005-05-19 Thread srinivas
9 at 12:53, Muthiah Annamalai wrote: > Hi, > To Check the entry widget for some text you can use > this. > > const char *ptr= gtk_entry_get_text(text_widget); > if (!strlen(ptr)) throw_error_popup(); > > -Muthu > > --- srinivas <[EMAIL PROTECTED]> wrote: > >

gtk text entry

2005-05-19 Thread srinivas
hi i have doubt in how to get data entered in to text entry widget. i am using glade and c. in my interface.c entry pointer is stored as GLADE_HOOKUP_OBJECT (window_ssnew, entry_name, "entry_name"); how to refer the entry_name (text entry widget name) in callbacks.c using lookup_widget how c

Re: gtk text entry

2005-05-18 Thread srinivas
thanks a lot for the mail and link, i tried with my application, now i have one more doubt, i have my main window "window_ssnew", and my gtk entry text "entry_name", and "next" button. "entry_name" and "next" button are on different frames on "window_ssnew". as i am using glade i used like, /*

re: undefined reference

2005-05-17 Thread srinivas
hi i got this after compilation: /tmp/ccbxeJnu.o(.text+0xd1b): In function `help':: undefined reference to `gtk_label_set_use_markup' how to resolve this. thanks; vasu. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnom

gtk text entry

2005-05-17 Thread srinivas
hi all; i am developing gui with glade and c. now i have a "text entry" and "next button" widget. when i press next button the next frame will be shown, but before displaying the next frame i would like to check whether text entry had filled with some text or not. if it is filled then the frame

Re: gtk_clist_append

2005-05-16 Thread srinivas
widget. how can i get this functionality. thanks once again; vasu. On Mon, 2005-05-16 at 17:23, Daniel Brockman wrote: > srinivas <[EMAIL PROTECTED]> writes: > > > Gtk-CRITICAL **: file gtkclist.c: line 2673 (gtk_clist_append): > > assertion `GTK_IS_CLIST (clist)&#x

gtk_clist_append

2005-05-15 Thread srinivas
hi while appending the text to clist i got this warning, and itz not appending to the list. Gtk-CRITICAL **: file gtkclist.c: line 2673 (gtk_clist_append): assertion `GTK_IS_CLIST (clist)' failed. how can i resolve this and how to append to the clist. thanks; vasu. _

insert to gtk_clist

2005-05-13 Thread srinivas
i got these warnings when i tried to access clist. can i access clist from interface.c using gtk_lookup_widget. clist is a child of schedule window i created. how to access the child widget defined in interface and how to insert rows to the clist in callbacks.c WARNING **: Widget not found: clist

RE: folder selection

2005-05-13 Thread srinivas
; thanks; vasu. On Sat, 2005-05-14 at 01:03, Prewitt, Nathan C ERDC-ITL-MS Contractor wrote: > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] Behalf Of srinivas > > Sent: Friday, May 13, 2005 12:45 AM > > To: gtk-app-devel-list

folder selection

2005-05-12 Thread srinivas
hi ; can i use gtk_file_selection to select the folder, if so can i have an example of it. bye; vasu. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

gtk file selection

2005-05-12 Thread srinivas
hi; can i directly use the gtk_file_selection API for selection, deletion, rename and creating folders or by using the API only the widget visible and i have to give functionality to each button. i directly used the file selection API, the widget is visible but the button's are not working nei

file selection

2005-05-12 Thread srinivas
hi; i used filew = gtk_file_selection_new ("Folder Selection"); gtk_file_selection_set_filename (GTK_FILE_SELECTION (filew), "***.png"); gtk_file_selection_get_filename (GTK_FILE_SELECTION (filew)); gtk_widget_show(filew); to select and display file/folder list, i can able to display widget, bu

gtk path selection

2005-05-11 Thread srinivas
hi how to get the path of file and display it in list view widget, when selected using file chooser widget. when file chooser widget button pressed file chooser menu will open, and i want to display the selected file path in to the list view widget up on pressing ok button on file chooser widget

gtk folder path

2005-05-10 Thread srinivas
hi all; i have an application in which when i selected the particular file or folder the file/folder path has to be displayed in the list widget. the number of file/folders i selected, the path of those files to be displayed in separate rows. how can i get this functionality, any samples. thanks;

set sensitive to box widget

2005-04-29 Thread srinivas
hi; i have a toggled button. when i toggled the button i want vbox_widget to be deactivated and again on toggling the button i want the box widget to be activated.how can i get this functionality. any samples; thanks; vas. ___ gtk-app-devel-list mai

Re: treeview

2005-04-29 Thread srinivas
> > gcc -Wall -g filename.c -o filename $CFLAGS > `pkg-config gtk+-2.0 --cflags` `pkg-config gtk+-2.0 > --libs` > > Thanks > Deekshit M > > --- srinivas <[EMAIL PROTECTED]> wrote: > > i compiled my pgm using > > -> gcc -Wall -g filename.c -o

treeview

2005-04-28 Thread srinivas
i compiled my pgm using -> gcc -Wall -g filename.c -o filename $CFLAGS `gtk-config --cflags` `gtk-config --libs`. i got the error like this, error: `GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER' undeclared (first use in this function) error: `GTK_STOCK_CANCEL' undeclared (first use in this func

dispaly folder path

2005-04-28 Thread srinivas
how to display the path of the selected folder in list view widget, what functionality needed to implement this.any samples. bye; vas ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-ap

get the path of folder

2005-04-28 Thread srinivas
hi; i am doing gui application using gtk, c. no scripting languages. now i want to know functionality to get the path of a folder, and the selected folder path has to be displayed in the list. -> by selecting the folder and clicking ok button on the fileselection widget the folder path has to be

re:deactivate buttons

2005-04-27 Thread srinivas
hi ; i need samples for deactivating buttons. initially the buttons have to be deactivated, only when the activate button pressed the deactivated buttons have to activate. how can i can do this using gtk and c, i am not using any scripting. any samples available for this. thanks; vasu. ___

re:deactivate buttons

2005-04-27 Thread srinivas
hi ; i need samples for deactivating buttons. initially the buttons have to be deactivated, only when the activate button pressed the deactivated buttons have to activate. how can i can do this using gtk. any samples available for this. thanks; vasu.

file system

2005-04-20 Thread srinivas
hi; i want to know the function to read the Linux file hierarchy, so that i can able to display the file hierarchy in tree-view, also how to add a check box to the treeview. thanks; vas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.or

label hi-lite

2005-04-18 Thread srinivas
hi all; using gtk how to hi-lite the alternative labels, or rows. thanks; vas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Gtk path insert

2005-04-12 Thread srinivas
hi; i am doing a scanning application gui with gtk. now i would like to have idea abt how to get the path of a file. itz like when i select a file the path has to be added to the list from there the file will be scanned. how to add file or directory path to list. thanks; vasu. __

re:gtk treeview

2005-04-08 Thread srinivas
hi all; i would like to display file system in treeview with nodes, expand and collapse functionality. how can i do this. thanks; vas. ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-dev

gtk folder selection

2005-04-06 Thread srinivas
hi to all; i am very new to this. i am developing gui with gtk. now i created a list view and a file selector, the file what ever i am selecting i want to display it to the listview. how can i do this. and i want to display the root file system in tree view with checkboxes. so that i can check f