search for: menubuttons

Displaying 18 results from an estimated 18 matches for "menubuttons".

Did you mean: menubutton
2003 Aug 15
1
menubutton don´t work
Why the variable archOp does not take the value that be chosen in the menubutton?, therefore always remains as a white one, I intend to charge the direccion of open files in a vector and then to elect with the menubutton with which to work but not functions thanks.Ruben library(tcltk) arch<-tclVar(init=" ") archOp<-tclVar(init=" ") vectPath<-c()
2006 Jun 21
3
getElementsByClassName
...ormance of this function to be? I wrote this code: function CreateTOC(){ var $aTOC = document.getElementsByClassName(''tocitem''); if(isArray($aTOC)){ $temp = ''<INPUT TYPE="SUBMIT" NAME="cmdSave_Update" VALUE="Close" CLASS="menubuttons"> ''; $temp += ''<INPUT TYPE="SUBMIT" NAME="cmdSave_Update" VALUE="Save_Update" CLASS="menubuttons"> ''; $temp += ''<SELECT NAME="cboTOC" onChange="location=this.options[this.selectedIndex].v...
2007 Aug 13
0
2 commits - libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_tag.h
libswfdec/swfdec_sprite_movie.c | 60 --------------- libswfdec/swfdec_tag.c | 152 +++++++++++++++++++++++++++++++--------- libswfdec/swfdec_tag.h | 5 + 3 files changed, 128 insertions(+), 89 deletions(-) New commits: diff-tree 37ed222d6ea5305df2c238122be4e31a98af3229 (from 9d35a0a007492163043bf609bf2759a05738c8df) Author: Benjamin Otte <otte at gnome.org> Date:
2001 Sep 19
2
tcltk: Difficulties creating menus
I am struggling with adding menus to a tcltk application. The following example (from the O'Reilly book on Perl/Tk) works fine: #!/usr/bin/perl -w use Tk; my $mw = MainWindow->new; $menub = $mw->Menubutton(-text => "Color")->pack(); foreach (qw/red yellow green blue grey/) { $menub->radiobutton(-label => $_, -command => \&set_bg,
2005 Dec 17
0
CentOS-announce Digest, Vol 10, Issue 7
Send CentOS-announce mailing list submissions to centos-announce at centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-request at centos.org You can reach the person managing the list at centos-announce-owner at centos.org When
2007 Oct 19
1
tcltk: help with tkmenubutton
...nvert one line in this example: library(tcltk) # create a main window mw <- tktoplevel() # a menu consists of a horizontal menubar, # with associated submenus ##### first create the horizontal menubar mb <- tkframe(mw, relief = 'raised', bd = 2) # now put in the menubar some menubuttons m_file <- tkmenubutton(mb, text = "File", underline = 0) # pack everything from the menubar tkpack(mb, side = "top", fill = "x") tkpack(m_file, side = "left") #### now create the submenus # the file menus # # HERE!!! What is the magic inchantation t...
2006 Apr 01
0
CEEA-2005:1216-001 CentOS 4 i386 xfce - enhancement update (extras only)
CentOS Errata and Enhancement Advisory 2005:1216-001 CentOS 4 i386 xfce - Enhancement Update (Extras Only) This CEEA is for the version of xfce is that is included in the extras repo for CentOS-4 ... this is not an update to the main CentOS-4 repo. The following xfce plugins have been added for CentOS-4 extras: ------------ xfce4-cpugraph-plugin A CPU monitor plugin for the Xfce panel. It
2006 Apr 01
0
CEEA-2005:1216-001 CentOS 4 x86_64 xfce - enhancement update (extras only)
CentOS Errata and Enhancement Advisory 2005:1216-001 CentOS 4 x86_64 xfce - Enhancement Update (Extras Only) This CEEA is for the version of xfce is that is included in the extras repo for CentOS-4 ... this is not an update to the main CentOS-4 repo. The following xfce plugins have been added for CentOS-4 extras: ------------ xfce4-cpugraph-plugin A CPU monitor plugin for the Xfce panel. It
2007 Oct 30
0
libswfdec/swfdec_button_movie.c
libswfdec/swfdec_button_movie.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) New commits: commit 0c7d0ceb77367b205016635cd2a755710afb5184 Author: Benjamin Otte <otte at gnome.org> Date: Tue Oct 30 13:45:33 2007 +0100 fix event emission of rollOver event Note to self: SwfdecButton _seriously_ needs a rewrite diff --git a/libswfdec/swfdec_button_movie.c
2003 Sep 09
1
charge a vector with variables and to use as variable in a checkbutton?
hello, how i cant to charge in form dynamic a checkbutton, try to do it with a vector be charged automaticamente but not works, for example library(tcltk) tt<-tktoplevel() f<-tkframe(tt) tkpack(f) i<-2 if (i==1) {b1<-tkcheckbutton (f,text="b1",variable="b1",relief="raised");tkpack(b1);print(tclvalue ("b1"))}else if (i==2) {b1<-tkcheckbutton
2000 Aug 09
2
tcltk_example
Hello R and tcltk users... I'm running into difficulties applying the tkmenubutton() and tklistbox() functions, found in the tcltk package, to a simple gui. My search for R code which utilizes these two functions has come up empty. Currently, I am attempting to translate pure "Tcl/Tk" code to R with little to no success. So far, the most helpful tool for learning the tcltk R
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...movie_parent_class)->mouse_release (movie, button); } else { swfdec_button_movie_set_state (SWFDEC_BUTTON_MOVIE (movie), SWFDEC_BUTTON_UP); - } - SWFDEC_MOVIE_CLASS (swfdec_button_movie_parent_class)->mouse_release (movie, button); + /* NB: We don't chain to parent here for menubuttons*/ + if (!SWFDEC_BUTTON_MOVIE (movie)->button->menubutton) + SWFDEC_MOVIE_CLASS (swfdec_button_movie_parent_class)->mouse_release (movie, button); + } } static void diff --git a/libswfdec/swfdec_sprite_movie.c b/libswfdec/swfdec_sprite_movie.c index a9f99a7..15d6af3 100644 ---...
2007 Aug 13
0
Branch 'vivi' - 24 commits - configure.ac libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_tag.h vivified/core vivified/dock vivified/ui
configure.ac | 1 libswfdec/swfdec_sprite_movie.c | 60 -------------- libswfdec/swfdec_tag.c | 152 ++++++++++++++++++++++++++++-------- libswfdec/swfdec_tag.h | 5 + vivified/core/Makefile.am | 5 + vivified/core/vivi_application.c | 97 ++++++++++++++++++---- vivified/core/vivi_application.h | 3
2007 Mar 19
0
7 commits - libswfdec/jpeg libswfdec/swfdec_button_movie.c libswfdec/swfdec_js_net_stream.c libswfdec/swfdec_movie.c libswfdec/swfdec_net_stream.c libswfdec/swfdec_video.c player/swfdec_debug_movies.c
libswfdec/jpeg/Makefile.am | 4 ++-- libswfdec/jpeg/jpeg.c | 2 +- libswfdec/jpeg/jpeg.h | 2 +- libswfdec/jpeg/test.c | 7 ++++--- libswfdec/swfdec_button_movie.c | 32 ++++++++++++++++++++++++++++++++ libswfdec/swfdec_js_net_stream.c | 23 +++++++++++++++++++++++ libswfdec/swfdec_movie.c | 4 ++++ libswfdec/swfdec_net_stream.c
2007 Oct 25
0
4 commits - libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_resource.c libswfdec/swfdec_resource.h libswfdec/swfdec_sprite_movie.c test/trace
libswfdec/swfdec_button.h | 18 +++++++------- libswfdec/swfdec_button_movie.c | 10 ++++---- libswfdec/swfdec_resource.c | 10 ++++---- libswfdec/swfdec_resource.h | 2 - libswfdec/swfdec_sprite_movie.c | 3 -- test/trace/Makefile.am | 37 ++++++++++++++++++------------
2007 Aug 21
0
Branch 'vivi' - 10 commits - libswfdec/swfdec_button_movie.c libswfdec/swfdec_movie.c libswfdec/swfdec_player.c vivified/core vivified/dock vivified/ui
libswfdec/swfdec_button_movie.c | 9 +++++++- libswfdec/swfdec_movie.c | 1 libswfdec/swfdec_player.c | 2 - vivified/core/vivi_application.c | 4 +++ vivified/core/vivi_initialize.as | 1 vivified/core/vivi_player_as.c | 25 ++++++++++++++++++++++++ vivified/dock/vivi_vdock.c | 2 - vivified/ui/Makefile.am | 1 vivified/ui/main.c
2009 Nov 06
1
centos 5.3 install ncview X libraries error and netcdf header error
I was trying to install software named ncview on a centos 5.3 box. ./configure command gave this error: Error, the X libraries and development headers must be installed for ncview to work! I was surprised that there were many google hits related to ubuntu, none for centos. So even though I eventually figured out what to do, I decided to share this with the list anyhow, so maybe next time I
2007 Aug 22
0
163 commits - autogen.sh configure.ac doc/swfdec-sections.txt libswfdec-gtk/swfdec_gtk_player.c libswfdec-gtk/swfdec_gtk_player.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec-gtk/swfdec_source.c libswfdec/Makefile.am libswfdec/swfdec_as_array.c
Makefile.am | 7 autogen.sh | 2 configure.ac | 27 + doc/swfdec-sections.txt | 3 libswfdec-gtk/swfdec_gtk_player.c | 7 libswfdec-gtk/swfdec_gtk_player.h | 2 libswfdec-gtk/swfdec_gtk_widget.c |