Questions tagged [custom-widgets]
131 questions
1
vote
1 answer
How to set custom widget on QMainWindow in PyQt5
I am trying to have a custom widget displayed on pyQT main window but for some reason, I am getting two windows instead of the custom widget defined in the function years i.e. checkable combo box displayed in Dialog_01 (main window). Below is my…

user9529330
- 89
- 1
- 15
1
vote
0 answers
Install Custom Widget on QtCreator
I create a custom widget project with a qled. Now, i want to use it on my project but i can't find the correct way to install this custom widget in the qtcreator. Can you help me?

Marco Bernardi
- 71
- 1
- 6
1
vote
1 answer
Is it possible to add a custom widget to switch between 2D and 3D view in Web Appbuilder Developer Edition?
I am new to the application development community and I am trying to customize an application created with ArcGIS Web AppBuilder to switch between 2D and 3D views. I have published 2 maps on my ArcGIS Portal, a 2D and a 3D from the same study area.…

Stefana Cioban
- 43
- 6
1
vote
1 answer
PyQt: Global copy/paste actions for custom widgets
I'm writing a tool which has a big custom text area widget and a lot of other text input widgets, etc. I'm currently working with adding copy/paste to my tool and got stuck on how to do this on a global level - i.e. I don't want to implement…

UglyBob
- 247
- 1
- 14
1
vote
1 answer
Vaadin and custom Gwt Widget - setting language for widget
We have a vaadin application and custom gwt widget included as external jar. Widget has its own translations (polish and english). The problem is, when running custom widget in external app, it does translate properly, but when it is inside a vaadin…

Invader
- 105
- 1
- 12
1
vote
1 answer
How to add a QLabel(clickable link) to QWizard's button layout
I would like to add a clickable blue link (QLabel) right next to 'Next' button on one of my QWizardPages(subclassed) so the wizard's button layout would look like:
[Cancel] MyLabel [Next]
I…

Desst
- 41
- 1
1
vote
2 answers
Dynamically add a custom widget to a baked-in layout
I'm working on some desktop software that requires one static window with a frame filled with dynamic content. The frame is on the main window, and the main window has a grid layout that lets the widgets I've added through the editor to…

OzBarry
- 1,098
- 1
- 17
- 44
1
vote
1 answer
Extending from GtkBin
I'm trying to make a custom widget that resembles the "quick search" entry that Gtk uses on all TreeView-like widgets.
Here's a simplified example of my initial idea:
from gi.repository import Gtk
class QuickSearch(Gtk.Bin):
def __init__(self,…

asermax
- 3,053
- 2
- 23
- 28
1
vote
1 answer
how to handle click event for the custom gwt widget
I have a my own widget which simulates a multi select list box.
It will have a list of check boxes.
public class MultiListBox extends Composite implements IsWidget
{
private static MultiListBoxUiBinder uiBinder = GWT
…

Sree
- 921
- 2
- 12
- 31
1
vote
1 answer
custom data coercion with django modelform
Caveat: I don't have a deep knowledge, so if I'm barking up the wrong tree please let me know.
Anyways, I'm working on writing a tagging app. I want the user to be able to enter a list of space separated words rather than have to browse through a…

OpCodeOmega
- 319
- 4
- 14
1
vote
1 answer
django: Why won't my custom widget populate with values from a database object?
I wrote a custom widget for my Django application to interface Twitter Bootstrap's button groups with a select multiple widget (never liked those things). It works beautifully except for one thing: When I instance my form from a database object, the…

raddevon
- 3,290
- 4
- 39
- 49
0
votes
0 answers
How to use custom Java widgets in Qt Designer UI?
I'm using Eclipse with the Qt Designer UI plugin for Qt Jambi.
Everything I'm writing is in Java. My problem is the following:
I've created a widget called ParentWidget, and another called ChildWidget. Now I would like to, in the Qt Designer (thus…

wen
- 3,782
- 9
- 34
- 54
0
votes
1 answer
Android: How do you stop custom buttons from taking all available cell space in a TableLayout?
I designed coloured Android Button Drawables and put them in a TableLayout. The problem is that Android's default buttons do not take up the entire cell space, but my drawables do (See attatched pictures). How can I adjust my XML so that my…

W.K.S
- 9,787
- 15
- 75
- 122
0
votes
2 answers
Create Custom Qt Widget or Implement an existing widget?
So I'm trying to work out how to design my wire-frame. It is essentially just two QScrollAreas, one above another, with a header (and button inside the header) for each.
Inside one design of the scroll area, I want to have items similar to a list…

dajaffe
- 855
- 13
- 34
0
votes
1 answer
Exposing GTK3 custom widget properties in glade
I can add a custom widget to GTK, as shown here. Now I'd like to add properties to the custom widget and have them show up in glade. Is this possible?
I have added properties to the custom widget as shown here but the properties do not show up in…

Olumide
- 5,397
- 10
- 55
- 104