Displaying 20 results from an estimated 200 matches similar to: "Popup Window"
2006 Jul 24
6
MiniFrame.i
Hi
Another little patch, adding MiniFrame (a frame with small title bar and
buttons which doesn''t appear in the desktop taskbar).
Also a sample - not very interesting, happy to roll this into something
else if that''s better.
cheers
alex
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2007 Aug 23
7
TaskBarIcon gives Typerror
Hi,
I''m working with wxruby since 2 days but next to this Wiki: http://wxruby.rubyforge.org/wiki/wiki.pl and this Doc: http://wxruby.rubyforge.org/doc/ I couldn''t find something usefull for it. Also del.icio.us has no intresting links. Do you know any good website or book about wxruby?
My problem at the moment is, I wanna test the TaskBarIcon on Gnome and so I did:
2007 Jun 20
1
Wx::TaskBarIcon example?
I was wondering if anyone could help me out with a little bit of sample
code for TaskBarIcon. I want my app to launch hidden and be able to
show/hide it from a taskbaricon menu. I found some C++ examples but they
were beyond the scope of what I''m trying to do and confused me more.
Thanks,
-Alex C.
2007 Jun 28
2
Keeping GUI responsive while processing data
To start I will say I have read through the read "Problem with threads"
to try and work around this problem, but I do not think I understand
what is happening enough to make use of the info I found there.
My app is pretty basic and does some text processing on 2 files and uses
WIN32OLE to take the data and put it an excel sheet. The processing is
really fast, but loading up Excel
2007 Dec 18
1
Dynamic Task Bar Menu Items
Am looking for a way to dynamically add menu items to a task bar icon
menu. And then once selected - I would like to get the title of the menu
item. The general idea is to read a text file:
Project1
Project2
Project3
=====
Add those to the task bar menu, and when i select (for example)
Project2, I want to pass the string "Project2" to the code.
Also - Am wondering about how to get
2010 Nov 07
1
On Mac: undefined method `create_popup_menu' for #<Wx::TaskBarIcon>
Hi there,
I got the following error every time when I tried right clicking the app
icon on Dock.
Env: Mac OS X 10.6
wxRuby: wxruby-2.0.1-universal-darwin-9
Error: undefined method `create_popup_menu'' for
#<Wx::TaskBarIcon:0x1884be40>
Backtrace:
/Users/zhimin/Work/projects/testwise/vendor/source/darwin/gems/wxruby-2.0.1-universal-darwin-9/lib/wx/accessors.rb:50:in
2006 Sep 15
1
wxMiniFrame
This implements a MiniFrame example. Not very exciting, but there you
go. We need to figure out why center_on_parent isn''t working. Maybe
I''ll tackle that next.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Apr 29
8
wxruby unfriendly to other threads?
I''ve seen a few e-mails about multithreading with respect to wxruby
but nothing recent. Unless I''m mistaken, and that may be, there
still appear to be problems.
The following code seems to hang my spawned thread in favor of the
wxruby event loop:
Thread.new do
puts "in thread"
loop do
sleep 5
puts "looping"
end
end
puts "main
2006 Oct 15
4
TaskBarIcon
Attached are some patches to implement the TaskBarIcon. Let me know how
this works on Linux and OS X. You may want to ''svn update'' first and
get the new version of ruby.png since I fixed the transparent background.
Roy
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: bigdemo.rb.patch
Url:
2008 Mar 13
3
TaskBarIcon in OS X
Is the Wx:TaskBarIcon supported under OS X? I can''t seem to get it
working. My code works under Windows, but not OS X. I thought it was
something I was doing, so I tried the bigdemo.rb sample and that
doesnt'' seem to like OS X either.
I''m running OS X 10.5 with wxRuby 1.9.5 gem and ruby 1.8.6.
-dave
--
David Grandinetti
(315) 569 2594
2006 Nov 19
1
TaskBarIcon i wxruby2-preview gem
Hi!
I would like to use the Wx::TaskBarIcon class, but it does not seem to be
present in my installation.
I''m using the latest "wxruby2-preview" gem. From browsing the mailing lists
it seems as if this class was added
quite recently, so I guess it is not yet included in the gem.
So my questions are:
When will this class be available in the gem package?
Until then, do I have
2007 Dec 08
1
Windows or Cross-Platform System Tray
I am new to Ruby, and am trying out wxRuby, is there a place to find
examples of code to make system tray icons with left and right click menus?
Cross platform is ideal, but win32 specific if necc...
thanks!
2008 Jul 28
12
Segfault with GridCellChoiceEditor
I have a problem.
In my application I have a few Grid objects in a Notebook. The Grid objects
are populated via GridTableBase. Certain Grid cells need to have a choice
interface (I''m artificially enforcing foreign key constraints). All this
works to the point where you try to edit the value for that cell. The
choice box renders (i.e. the drop down arrow appears) then the application
2007 Aug 05
5
accent
Salut alex, est-ce qu''il est possible d''avoir la liste de tous les accents qu''il est possible de représenter avec wxruby2,
comme "é" par exemple.
merci
Sebastien
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Sep 13
1
Implementation for Timer and TimerEvent
These files implement the Timer. There''s also a patch to introduce
EVT_TIMER
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Oct 16
1
Printing
I have applied Sean''s patches internally. Only print preview is
working. I will try to see why page setup and print aren''t working later.
Be careful applying those patches as they may remove the TaskBarIcon
changes that were checked in recently. (I just edited them out before
applying)
Roy
2007 Oct 03
9
WxRuby Newbie Application Hanging
I have a WxRuby application that takes a few inputs from the user and
uses that information to search through a large file for matches. The
application works very well, with one exception. If I click anywhere
in the frame while the application is searching through the long file,
the application hangs. Has anyone experienced anything similar to
this? Any suggestions on how I can fix this?
Thanks
2007 Nov 22
2
Active Record Question
hey!
I have the following table structure in my DB
| users |
------------
| (pk)id |
| username |
| pass |
------------
(1:n)
| users_objects | | objectattributes |
------------------ ----------------------------------
| (fk,pk)user_id | (1:n) | (pk)attribute |
|(fk,pk)object_id| | (pk,fk)
2008 Apr 30
1
MediaCtrl with no parent?
Hiyas, I''m trying to make a mediactrl with no parent or with my
application as the parent, so it can play music in the background (I''m
making a simple alarm app), but I cant seem to get it workin. Any ideas
or does it need to have a frame as a parent?
--
Posted via http://www.ruby-forum.com/.
2007 Dec 30
4
Drawing thread not getting enough time from scheduler?
Need some assistance with animation again... When I run the drawing
code in a separate thread, it''s slow as heck. I think it may be
because the drawing thread isn''t getting enough time from the thread
scheduler.
I was able to reproduce the problem in my little sample program simply
by increasing the number of lines it draws per update. I''m lucky to
get one frame