Questions tagged [vbox]

VBox is a JavaFX layout pane that lays out its children in a single vertical column.

158 questions
3
votes
1 answer

How to make widgets packed within gtk.Box (VBox/HBox) resizable by the user

Is it possible to make the widgets within a box resizable by the user? Cheers! Example: hbox.pack_start(my_scrolled_window_1, expand=True, fill=True, padding=0) hbox.pack_start(my_vseparator, expand=False, fill=False, padding=5) …
type
  • 1,137
  • 2
  • 9
  • 16
3
votes
1 answer

Sencha Touch : vbox inside hbox layout issue

I am putting a vbox layout inside hbox layout. But the vbox isn't working properly. Here is the code: Code: var panel = new Ext.Panel({ fullscreen : true, layout : { type : 'hbox', align : 'stretch' }, items : [{ …
Swar
  • 5,473
  • 3
  • 31
  • 43
3
votes
2 answers

JavaFX layouts question

I am having some problem understanding layouts in JavaFX. Consider following code. Stage { title: "ListView test" scene: Scene { width: 400 height: 400 content: [ VBox { content: [ …
Jhonghee
  • 670
  • 1
  • 6
  • 10
3
votes
1 answer

How to move items with in VBox(Change order by Dragging) in JavaFX?

i want to drag TitledPane with in a VBox.I have n number of Titlepane's in a VBox. I want to change the order of them when dragded.I tried with some of MouseEvents and DragEvents. But its not working for me. But i need the indexes of which…
Gangaraju
  • 4,406
  • 9
  • 45
  • 77
2
votes
2 answers

Ext JS 4 - laying out fields in a form using hbox, vbox, etc

I have a simple Ext JS 4 form inside a window (MVC style app). The example below shows 4 fields. This example is simplified, but now I need to take these fields and lay them out using hbox and vbox (and possibly others?) How would I for example,…
Scott Szretter
  • 3,938
  • 11
  • 57
  • 76
2
votes
1 answer

Possible ways to communicate between Guest to Host OS using Qemu?

What other possible ways exists to send data from Guest OS to Host Machines ? I have tried in Qemu: (1)using vhost-vsock, but it lags in performance. (2)MMIO callbacks, but it also lags in performance. Is there any other mechanism by which we can…
2
votes
1 answer

gtk vbox or hbox

#include #include #include /*Devo fare un pulsante che, una volta premuto, legga * i due numeri e ne calcoli l'MCD*/ int main(int argc, char *argv[]){ GtkWidget *window; GtkWidget *table; GtkWidget…
polslinux
  • 1,739
  • 9
  • 34
  • 73
2
votes
2 answers

Javafx adding dynamically pane to vbox Duplicate Children error

I have a pane with a label, a text field and a combo box inside a VBox in fxml file. Let´s call it tempPane. In the same stage I have a button. Once the button is pressed I need to add to the VBox a pane exactly the same as tempPane. This is, adding…
LazyTurtle
  • 131
  • 1
  • 3
  • 16
2
votes
2 answers

Fit VBox to parent GridPane

I have GridPane which has two columns: first contains fixed-size ImageView, the second has VBox with Text elements. I need this VBox to fit the column width. Grid has right dimensions, ImageView too, but VBox in second column fits to text which it…
Paweł Wójcik
  • 133
  • 1
  • 14
2
votes
2 answers

Rotated Objects inside a VBox (or HBox)

I have a program short that puts Rotated objects inside a VBox. I want the VBox to adjust it's vertical size based on the rotation. In the following example the Text objects should NOT touch: But they do. The code to generate this is below: package…
Robert3452
  • 1,354
  • 2
  • 17
  • 39
1
vote
2 answers

Is there a way to position a component in flex that is fixed?

Just like in HTML / CSS you can set the position of a div to be 'fixed' using css. For example, a header that is fixed at the top of the web page when the user scrolls down the webpage. Is this possible in Flex? I have had a look at the…
enormace
  • 641
  • 2
  • 6
  • 20
1
vote
2 answers

Cannot get scroll bar to work PyGTK treeview

First let me start off by saying I read on here a lot and I have googled around for the answer but have not been able to turn one up. Basically I am trying to add a scroll bar to add to my vbox window. I know its simply something I am not…
Stratus
  • 39
  • 1
  • 5
1
vote
2 answers

vagrant up hostonly issue --host-only-net9=HostOnly | Windows 10

When I want to excecute vagrant up command, the following issue is shown: Bringing machine 'homestead' up with 'virtualbox' provider... ==> homestead: Checking if box 'laravel/homestead' version '12.2.0' is up to date... ==> homestead: Clearing any…
1
vote
0 answers

Adding children to VBox in JavaFX using a for loop

I'm making a mortgage calculator using JavaFX for a school project. The user will input their interest rate, loan amount, and loan term. It then calculates monthly payments, total payments, and overpayments. I made one using a Scanner and outputting…
1
vote
1 answer

Difference between SetProperty and RemoveChild in Flex

I am new to Flex. Recently, I am learning about 'state' concept in Flex. When state is changed, we can define the new properties for the new state overidding the properties of the base state. But, I had a doubt. What is the difference between…
Anil
  • 13
  • 2
1
2
3
10 11