search for: filedialog

Displaying 20 results from an estimated 34 matches for "filedialog".

2007 Mar 28
0
[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8
...x 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>925</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-03-28 13:28:48...
2007 May 19
0
[1020] trunk/wxruby2/swig/classes/FileDialog.i: Added the Wx::FD_XXX constants for FileDialog variants
...#ccc;margin:10px 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[1020] trunk/wxruby2/swig/classes/FileDialog.i: Added the Wx::FD_XXX constants for FileDialog variants</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>1020</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-0...
2007 Nov 07
1
Wx::FileDialog and common dialogs
The documentation for Wx::FileDialog is incorrectly generated: http://wxruby.rubyforge.org/doc/filedialog.html Every time the ''*'' (for the wildcard character in file filters) appears, the doc instead switches between boldface and normal. Also, it seems like the links under "See also" are broken. Feature...
2005 Jul 20
1
wxr2 build error CVS HEAD on OS x
...objective-c++ -I /Applications/Emacs.app/Contents/Resources/lib/ruby/site_ruby -I /usr/local/lib/ruby/site_ruby/1.8 -I /usr/local/lib/ruby/site_ruby/1.8/powerpc-darwin7.5.0 -I /usr/local/lib/ruby/site_ruby -I /usr/local/lib/ruby/1.8 -I /usr/local/lib/ruby/1.8/powerpc-darwin7.5.0 -I . -o obj/FileDialog.o src/FileDialog.cpp src/FileDialog.cpp: In function `VALUE _wrap_wxFileDialog_GetFilenames(int, VALUE*, long unsigned int)'': src/FileDialog.cpp:923: error: conversion from `const wxWCharBuffer'' to non-scalar type `wxString'' requested src/FileDialog.cpp: In functio...
2007 May 19
1
Wx::FileDialog Styles are not working
The Constants for the Styles for FileDialog are not initialized to a value and the class will not work without those, the Dialog will come up when you call the show_modal method but the filenames are not showing up I specifically need the values for FD_OPEN FD_SAVE FD_OVERWRITE_PROMPT FD_FILE_MUST_EXIST but if I can''t get those...
2005 Sep 23
2
FileDialog.i patch
Here''s a patch for FileDialog.i. Seems we had never removed that #ifdef in there. wxWindows 2.6.2 works just fine on Windows. No other news. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Aug 11
2
Patch file for FileDialog.i
Attached is a patch file for FileDialog.i. It doesn''t work 100% yet because I haven''t yet figured out how to make it put the ruby declarations in the right place. If I cut and paste the rb_define_methods into the right place this works perfectly. This patch fixes the dialogs.rb multiple select example so that get...
2007 Aug 28
0
[ wxruby-Bugs-13457 ] Missing constants for FileDialog
...can respond by visiting: http://rubyforge.org/tracker/?func=detail&atid=218&aid=13457&group_id=35 Category: Missing API call Group: current Status: Open Resolution: None Priority: 3 Submitted By: Torbj?rn Bergstedt (tbergstedt) Assigned to: Nobody (None) Summary: Missing constants for FileDialog Initial Comment: According to the documentation, the FileDialog has a number of style constants, prefixed with FD_. However, those are not recognized when trying to use them. I''ve tried the FD_SAVE and FD_OVERWRITE_PROMPT to no avail. -----------------------------------------------------...
2004 May 21
0
For the FAQ: FileDialog default file name
On windows, the FileDialog class ignores filenames with slashes (/) as the default file name (4th parameter). Example scenario: path = "c:\\temp" name = File.join(''subdir'', ''somefile'') #=> ''subdir/somefile'' fd = FileDialog.new(self, "Please select file...
2007 Nov 19
1
about fileDialog
I want to create openfile dialog and I use @dialog = FileDialog.new(@panel, "Choose a file", "", "", ".*", style=FD_OPEN, Point.new(312,152), Size.new(98, 23), "open") it''s nothing happen in my frame I want to create openfileDialog at button how can I create it?? -- Posted via http://www.ruby-forum.c...
2007 Apr 05
7
Re: how to use Chinese Characters in wxRuby?
...no_wx_err begin require 'rubygems' require 'wx' rescue LoadError raise no_wx_err end end and run unicode.rb in this way: ruby -Ku unicode.rb I got the error message like this: unicode.rb:119: syntax error, unexpected tCONSTANT, expecting ')' fd = Wx::FileDialog.new( nil, 'Import file', "", "", ^ unicode.rb:128: warning: parenthesize argument(s) for future version unicode.rb:128: syntax error, unexpected tCONSTANT, expecting kEND Wx::MessageDialog.new(self, message, 'Wrong e...
2009 Mar 30
0
Problem in S4 object displaying from within a Java application using JRI
...Java objects or any other way to get the result from R. In order to make the problem more concrete i have attached the entire Java code contain my R program and the R program itself and its actual result run in isolation: Java application: import java.io.*; import java.awt.Frame; import java.awt.FileDialog; import java.util.Enumeration; import org.rosuda.JRI.Rengine; import org.rosuda.JRI.REXP; import org.rosuda.JRI.RList; import org.rosuda.JRI.RVector; import org.rosuda.JRI.RMainLoopCallbacks; public class Main { public static void main(String[] args) { // just making sure we have the...
2005 Aug 12
5
Functions that return objects...
I was investigating why the find dialog causes an error when you close it. It seems that wxRuby2 is returning a new ruby object when you call Event.get_dialog. This causes some big problems when you''re expecting you''re going to get back the same ruby pointer that you put in. In a brief check over the source I don''t see anything that preserves the original ruby
2007 Sep 27
2
wxRuby Documentation / Textitle Docs
Hey All, Just wanted to let you guys know, that with the HTML Generated documentation from the Textile source code, does not show *''s in stuff like Wx::FileDialog. It''s interpreting this as a Bold, not as an Asterisk. Just thought you''d want to know that. L8ers, Mario Steele
2004 Aug 26
18
wxRuby 0.5.0 has been released!
wxRuby 0.5.0 has been released and is now available for download from RubyForge at http://wxruby.rubyforge.org/ This release includes binary builds for Max OS X and MS Windows. Please report any bugs or feature requests here: http://rubyforge.org/tracker/?group_id=35 Changes in this release include: * Added XRC (Xml Resource File) support. * Added totally awesome HTML widget from Tobi
2009 Apr 28
0
Unhandled Exception: System.TypeInitializationException
....ctor (Int64 lnow) [0x00000] at System.TimeZone..cctor () [0x00000] --- End of inner exception stack trace --- at System.DateTime.get_Now () [0x00000] at System.Windows.Forms.WinFileSystem..ctor () [0x00000] at System.Windows.Forms.MWFVFS..ctor () [0x00000] at System.Windows.Forms.FileDialog..ctor () [0x00000] at System.Windows.Forms.OpenFileDialog..ctor () [0x00000] at (wrapper remoting-invoke-with-check) System.Windows.Forms.OpenFileDialog:.ctor () at Temporal_Flux.MDIForm.InitializeComponent () [0x00000] at Temporal_Flux.MDIForm..ctor () [0x00000] at (wrapper remoting...
2004 Aug 05
2
libraries needed to distribute app
Hi I''m making an installer for my WxRuby app, using exerb. I''ve included wxruby.so in the package, and it seems to work fine on my computer, but are there any other dlls or whatever I''m likely to need, for example for WxWidgets itself? Cheers alex
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...mboBox.o obj/CommandEvent.o obj/ContextMenuEvent.o obj/Control.o obj/ControlWithItems.o obj/Cursor.o obj/DC.o obj/DataObject.o obj/DataObjectSimple.o obj/Dialog.o obj/DirDialog.o obj/DragImage.o obj/DropSource.o obj/DropTarget.o obj/EraseEvent.o obj/Event.o obj/EvtHandler.o obj/FileDataObject.o obj/FileDialog.o obj/FileDropTarget.o obj/FindDialogEvent.o obj/FindReplaceData.o obj/FindReplaceDialog.o obj/FlexGridSizer.o obj/FocusEvent.o obj/Font.o obj/FontData.o obj/FontDialog.o obj/Frame.o obj/GBPosition.o obj/GBSpan.o obj/GDIObject.o obj/GLCanvas.o obj/Gauge.o obj/GenericDirCtrl.o obj/GraphicsBrush.o ob...
2008 Nov 29
3
Can't run Evidence Scribe
Hello, I have a program called "Evidence Scribe" it runs with .NET Whenever I try to run it I receive this: Code: blake at blake-desktop ~ $ env WINEPREFIX="/home/blake/.wine" wine "C:\Program Files\Idoneum\Evidence Scribe\Evidence Scribe.exe" fixme:gdiplus:GdipGetFontHeightGivenDPI Unhandled unit type: 3 Unhandled Exception: System.InvalidOperationException:
2004 Apr 27
15
Building wxruby on Solaris 9
Hi all, Ruby 1.8.1 Solaris 9 wxwindows 2.4.2 (package from blastwave.org) wxruby 0.3.0 I''m having trouble getting this sucker to build on my Solaris box. Here''s how I''m building: ruby extconf.rb --with-xrc-dir=/opt/csw --with-xrc-include=/opt/csw/lib/wx The include directive I added because the setup.h file is there (for whatever reason). And yes, /opt/csw/bin and