Tagged Questions
The wx tag has no wiki summary.
4
votes
2answers
86 views
why is my text not aligning properly in wxPython?
I'm using wxPython to build a GUI and I'm trying to align some text but it's not working at all.
I'm trying align three different static text items in three places (right aligned, center aligned, and ...
4
votes
2answers
374 views
wxHaskell on OS X
I want to use wxHaskell on OS X (Snow Leopard, MacBook Pro). I was able to install the library successfully and the script below:
module Main where
import Graphics.UI.WX
main :: IO ()
main = start ...
3
votes
2answers
66 views
wxpython capture keyboard events in a wx.Frame
I'm trying to capture keyboard events that happen inside a wx.Frame, and I would expect the following code to capture those events. However, the handler OnKeyDown is never called when I run the code:
...
3
votes
1answer
291 views
Why doesn't wxPerl draw my wxStaticBitmap when I run the program from a Windows shortcut?
I've made a wxPerl application which presents just a simple frame which only contains a wxMenuBar, wxPanel, wxTextCtrl and a wxStaticBitmap. The development and deployment platform is Windows XP and ...
3
votes
1answer
736 views
What resources exist for WxRuby: documentation, tutorials, samples?
I found the RubyForge documentation, which is a little tricky to navigate.
There's a basic tutorial on the Ruby On Windows blog. But I've already moved on from that.
What other WxRuby resources have ...
3
votes
1answer
683 views
Wxpython: Positioning a menu under a toolbar button
I have a CheckLabelTool in a wx.ToolBar and I want a menu to popup directly beneath it on mouse click. I'm trying to get the location of the tool so I can set the position of the menu, but everything ...
3
votes
1answer
922 views
wxpython: Updating a dict or other appropriate data type from wx.lib.sheet.CSheet object
If I have a notebook with three spreadsheet widgets, what is the best way to have changes to the spreadsheet update a dictionary (or maybe an sqlite file?). Do all wx grid objects come with a built ...
2
votes
1answer
22 views
wxpython:Insert multiple strings from one listbox to an other listbox
When i click on one of the choices of the zone_list in timezone1 listbox, i want to insert that string in the time_zones2 listbox and if after that i select an other choice i want to add the second ...
2
votes
2answers
88 views
Remove horizontal grid lines only on wxgrid
On the wxwidgets docs, I only found the EnableGridLines, which is set to false, removes both the horizontal and vertical lines, what I wish, is to remove only the horizontal lines on the grid. Is ...
2
votes
2answers
254 views
How can I compile a GUI executable with ghc?
I ported a little Haskell program I wrote from Mac to Windows. It's a GUI application (wxHaskell, compiled with ghc 6.12.1), so it does not need the command prompt window to open. It does so, anyway, ...
2
votes
2answers
247 views
Drawing anti-aliased lines in wx?
I've got a program that draws my mouse movements on a window.
The only problem is the line is very rough, and i would like it (not where two different lines link, but the actual line) to be ...
2
votes
1answer
950 views
Non-editable text box in wxPython
How to create a non-editable text box with no cursor in wxPython to dump text in?
2
votes
4answers
1k views
How do I set a minimum window size in wxWidgets?
This is the hierarchy of widgets I've got:
Frame > wxBoxSizer > wxPanel > wxBoxSizer > wxFlexGridSizer (2 columns, 9 rows), with assorted form fields and buttons inside.
The first BoxSizer is to ...
1
vote
1answer
212 views
Python ImportError: No module named wx
Im sorry to ask this question again. I have searched and found endles repeats of it both on stackoverflow and also on general google search. Unfortunatly I just cant get my system sorted.
I have the ...
1
vote
0answers
67 views
How to build wxPython trunk with mingw on Windows?
I checked out wxPython and wxWidgets into two directories C:\dev\wx\wxPtyhon and C:\dev\wx\wxWidgets:
mkdir /D c:\dev\wx\
cd c:\dev\wx
git clone https://github.com/wxWidgets/wxPython.git
git clone ...
1
vote
0answers
26 views
wx HtmlEasyPrinting encoding issues when Printing
I have an html text with non-ascii characters, and I want it printed using HtmlEasyPrinting module.
printer = HtmlEasyPrinting()
text = '''
<html>
<head>
<meta ...
1
vote
2answers
123 views
python thread crash
I have a program (time lapse maker) which has two threads that updates a wx.StaticBitmap. When the two threads access the wx.StaticBitmap it crashes with the error
python: xcb_io.c:221: ...
1
vote
2answers
98 views
What does the qw(:everything) do on a use line in perl?
This is an embarrassing question to ask but why does this line work while the other doesn't?
Working line:
use strict;
use warning;
use Wx qw(:everything);
my $dialog = Wx::MessageDialog->new(
...
1
vote
1answer
115 views
Unable to use wx.NotificationMessage properly with wxPython
I recently upgraded to the development release of wxPython (wxPython 2.9.2.4) since I needed the functionality of wx.NotificationMessage within my application. I have been trying unsuccessfully to ...
1
vote
1answer
75 views
Something like the wx.MultiChoiceDialog in a panel instead of a dialog
I'd like to use the list (with checkboxes next to each item) that is contained in the wxMultiChoice dialog in a panel. Is that possible?
1
vote
0answers
69 views
WxPython: How do I Edit Row and Column Names for a cSheet Grid and make the cells non-editable?
I am currently piping information to a wxPython GUI program in real time. I would like to make a custom spread-sheet-style 4x4 cell grid that continuously displays the values for a matrix being ...
1
vote
1answer
123 views
Displaying numpy arrays with matplotlib inside wx
I have a huge numpy ndarray with shape (MxNx3) and datatype float32. I want the image to simply display in a wx.Frame that has a wx.ScrolledWindow attached. I want the image at 100% zoom and it is ...
1
vote
1answer
57 views
What gui elements to be used?
I'm trying to create a journal entry interface, similar to those well known accounting softwares using wxpython for the gui and psycopg2 as backend. I tried doing it with a listctrl, but its use is ...
1
vote
0answers
105 views
wxBufferedPaintDC (Device Context) Trouble with wxPython onPaint event handler
I have a class called imageBrowser that displays an image in a wxMDIChildFrame. This class is mainly for displaying an image to the user with a set of controls to browse through the image set. Now, ...
1
vote
3answers
183 views
wxHaskell installation on windows
I stuck at installing wxHaskell on windows xp sp3
I installed MinGW, MSYS and wx-config
MinGW and MSYS with installer
wx-config with adding the directory to environment variable WXWIN
and wxWigets ...
1
vote
1answer
290 views
wx.ScrolledWindow not repainting when scrolled
I have a little app that I am working on with wxPython.
I have a scrolled window using wx.ScrolledWindow. It seems to refuse to repaint the contents when it is scrolled.
Example:
Code that created ...
1
vote
1answer
239 views
Ruby for cross-platform desktop applications?
Please share you experience building desktop applications with Ruby programming language. What GUI toolkits have you used? How have you packed everything into one installer? What troubles have you ...
1
vote
2answers
108 views
ERLANG - wxGrid register
Im having some trouble with the erlang wx module.
My program runs as follows:
Server = wx:new(),
Frame = wxFrame:new(Server, -1, "" [{size,{700, 600}}]), %%%REFERENCE TO WINDOW
Panel = ...
1
vote
0answers
153 views
wxWidgets ComboBox center on selected item
I have a requirement to center a wx.ComboBox on the selected item when opened.
Basically, I want to do this (http://stackoverflow.com/questions/592911/wpf-listbox-centering-selected-item), but using ...
1
vote
1answer
461 views
How to make wx.TextEntryDialog larger and resizable
I create a wx.TextEntryDialog as follows:
import wx
dlg = wx.TextEntryDialog(self, 'Rules:', 'Edit rules',
style=wx.TE_MULTILINE|wx.OK|wx.CANCEL)
...
1
vote
1answer
191 views
I'm trying to make a wx.Frame with variable transparancy (based on the png mapped in the erase bk event)
I'm trying to make a special splash screen that is displayed while the application is loading,
it outputs messages of the various components loading and features a progress bar.
The first job I am ...
1
vote
3answers
380 views
What are the existing open-source Python WxWidgets designers?
What are the usable tools?
I am aware of wxformbuilder and wxGlade, but none of them seems to be complete yet.
1
vote
2answers
117 views
How to layout all children of a wxPanel?
I have a wxPython application which allows the users to select items from menus that then change what is visible on the screen. This often requires a recalculation of the layout of panels. I'd like ...
1
vote
1answer
64 views
wx_ref and custom wx_object's
I am developing MDI application with help of wxErlang. I have a parent frame, implemented as wx_object:
-module(main_frame).
-export([new/0, init/1, handle_call/3, handle_event/2, terminate/2]).
...
1
vote
2answers
487 views
wxPython TreeCtrl without showing root while still showing arrows
I am making a python tree visualizer using wxPython. It would be used like so:
show_tree([ 'A node with no children', ('A node with children', 'A child node', ('A child node with children', 'Another ...
1
vote
2answers
338 views
Saving an image of what a dc drew, wxPython
I need to be able to save an image (format doesn't matter) of the state of the dc canvas. I tried dc.GetAsBitmap but it returns invalid bitmaps. How can I do it?
1
vote
6answers
652 views
Is there any Visual Studio-like tool for creating GUIs for Python?
My girlfriend asked me if there was a tool (actually, an IDE) that would let her create her GUI visually and edit functions associated with GUI-related events with little effort.
For example, she ...
0
votes
0answers
26 views
Need some help using widgets with wxpython
Hey i am using pygame within wxpython, and I am wondering how can I use a wx widget inside the pygame part of the program.
So, I would just like to replace the player image with a wxButton. (So when ...
0
votes
0answers
18 views
WxWidgets: wxMemoryDC fails to select wxBitmap created using CopyFromIcon
I create a bitmap from an icon and select it like so:
wxBitmap iconBitmap;
iconBitmap.CopyFromIcon(icon);
if(!icon.IsOk()) {
wxLogError("Error! bitmap is not okay\n");
}
wxMemoryDC dc;
...
0
votes
2answers
32 views
wxApp get stuck when closing
I've added new dialogs and pieces to my wxApp, but now when I close the main frame, the main frame get deleted but it never get to the OnExit function, and is stuck.
When I try to "break all", it ...
0
votes
1answer
21 views
wxWidgets OnInit
This code works fine:
#include <wx/wx.h>
class MyApp : public wxApp
{
virtual bool OnInit();
};
IMPLEMENT_APP(MyApp)
bool MyApp::OnInit()
{
wxFrame *frame = new wxFrame(NULL, -1, ...
0
votes
1answer
35 views
Change the font style of one item in a wx python ListCtrl
I am having issues changing the font of a single item in an wx list ctrl. I have 1 row and 3 columns in my ListCtrl. The code below should change the font of the item located at row = 0 col = 0 to ...
0
votes
0answers
22 views
What is the secret behind the undocumented 32bpp BMP transparency support?
The best source of information regarding BMP files is MSDN:BITMAPINFOHEADER structure but this article contains no information regarding transparency (alpha channel) support.
Still over years I keep ...
0
votes
0answers
19 views
agw.aui toolbar and bitmpas
I'm creating a UI in wx python on Ubuntu 10.04. I'd like to use an AUI toolbar and either 1) ideally, use my own icons (not from the provided art library) or b) have no icons. I can put my own icons ...
0
votes
0answers
34 views
inserting the control to wx.FlexGridSizer
I am adding some control like this :
| statictext| stc1 |
| statictext| stc2 |
| statictext| stc3 |
adding the control
self.text = ...
0
votes
2answers
38 views
Is there a way to uniquely style items in the wxChoice widget in wxPerl (WxWidgets)?
I'm trying to figure out if it's possible to style the items in a drop-down menu when I use the wxChoice widget. Best I can tell, it's not possible but I just wanted to ask the greater Perl community ...
0
votes
1answer
61 views
wxWidgets UI has all items gathered upper left corner when first opened
I'm a newbie on wxWidgets and try to design a UI. I'm using Microsoft Visual Studio 2010.
I'm trying to avoid using absolute positions for the UI elements, so I try to do everything with sizers. But ...
0
votes
1answer
55 views
How to include a wxObjArray correctly?
I define a wxObjArray in my TMainFrame.h as follows:
#ifndef __TMainFrame__
#define __TMainFrame__
#include "MyApp_gui.h"
//// end generated include
#include "TRunThread.h"
#include ...
0
votes
0answers
77 views
Python: How to kill wx.MessageBox based upon condition vs user input
I have a bit of code that checks the CD for a specific file content, and if its not correct it prompts the user to insert the correct CD. The problem is that I have a large period of time where the ...
0
votes
0answers
45 views
WxPython: Displaying EPS Images
Is there anyway to display an EPS image in wxPython while still conserving the EPS properties, such as being scalable to any size? Thank you very much.