summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KNumInput.java
blob: 08f58728feac6bbe1baea67490095a7c3cd467d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQSize;
import org.trinitydesktop.qt.TQSizePolicy;
import org.trinitydesktop.qt.TQWidget;
import org.trinitydesktop.qt.TQWidget;

/**

 You need to inherit from this class if you want to implement KNumInput
 for a different variable type
 		@short    You need to inherit from this class if you want to implement K NumInput  for a different variable type

*/
public class KNumInput extends TQWidget  {
	protected KNumInput(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**
		 Default constructor
			@param parent If parent is 0, the new widget becomes a top-level window. If parent is another widget, this widget becomes a child window inside parent. The new widget is deleted when its parent is deleted.
			@param name The name is sent to the TQObject constructor.
		     		@short    Default constructor
	*/
	/**
			@param below A pointer to another KNumInput.
			@param parent parent widget
			@param name name of the widget
		     		@short
	*/
	/**
		 Sets the text and alignment of the main description label.
			@param label The text of the label.
		              Use null to remove an existing one.
			@param a one of <code>AlignLeft</code>, <code>AlignHCenter</code>, YAlignRight and
		          <code>AlignTop</code>, <code>AlignVCenter</code>, <code>AlignBottom.</code>
		          default is <code>AlignLeft</code> | <code>AlignTop.</code>
			 The vertical alignment flags have special meaning with this
		 widget:

			<li>
			<code>AlignTop</code>     The label is placed above the edit/slider
			</li>

			<li>
			<code>AlignVCenter</code> The label is placed left beside the edit
			</li>

			<li>
			<code>AlignBottom</code>  The label is placed below the edit/slider
			</li>
				     		@short    Sets the text and alignment of the main description label.
	*/
	public native void setLabel(String label, int a);
	public native void setLabel(String label);
	/**
				@return the text of the label.

		@short
	*/
	public native String label();
	/**
				@return if the num input has a slider.

		@short
	*/
	public native boolean showSlider();
	/**
		 Sets the spacing of tickmarks for the slider.
			@param minor Minor tickmark separation.
			@param major Major tickmark separation.
		     		@short    Sets the spacing of tickmarks for the slider.
	*/
	public native void setSteps(int minor, int major);
	/**
		 Specifies that this widget may stretch horizontally, but is
		 fixed vertically (like TQSpinBox itself).
		     		@short    Specifies that this widget may stretch horizontally, but is  fixed vertically (like TQSpinBox itself).
	*/
	public native TQSizePolicy sizePolicy();
	/**
		 Returns a size which fits the contents of the control.
				@return the preferred size necessary to show the control

		@short    Returns a size which fits the contents of the control.
	*/
	public native TQSize sizeHint();
}