Attached is source for a layout manager I am working on. Its intended to be fairly simply to use and very extensible. My approach was to write a layout...
Steve Barrett
sjbjava@...
Apr 1, 2001 8:06 am
2077
... They are different: KeyListeners are near to lowest level processing, disadvantage is that you have to do a lot of work yourself, advantage is that...
Kleopatra
fastegal@...
Apr 1, 2001 10:50 am
2078
Thanks, Jeanette! Yes, that really helps explain the differences I've been seeing. One other significant feature of the registerKeyboardAction/inputMap ...
Farwell, Paul
PFarwell@...
Apr 1, 2001 2:14 pm
2079
Hello, Would you like to visit the largest and most popular adult product site on the web? We have thousands of adult toys/products at lower prices than you...
l53l5l34k30@...
Apr 1, 2001 6:58 pm
2080
Of course, you are right, I need to explain a bit more. Ok, the goal was to have a layout manager that could do positioning and sizing based on some kind of...
Steve Barrett
sjbjava@...
Apr 1, 2001 7:47 pm
2081
Hi, Does anybody know about some simple Linux mailing list that I can subscribe to. I have just started working on Linux (with no prior Unix experience) and am...
Peter Barraud
peterb@...
Apr 2, 2001 3:49 am
2082
Hi Peter, i do not really know of a mailing list but u can try on IRC chat channel #linux for help. Moreover pls visit the following sites for information: ...
Parminder Singh
Param_mail@...
Apr 2, 2001 6:38 am
2083
Hi, I need to develop a mailserver in Swing can anyone guide me through with documentation,any referal sites where i can find info are welcome. Ravi. ...
ravi kanth
sai_ravi_sai@...
Apr 2, 2001 8:21 am
2084
... Hmm, don't think so. Usually the FocusManager get's all the tabs (Ctrl-tab unconditionally, the normal tabs if the Component is not interested in it). And...
Kleopatra
fastegal@...
Apr 2, 2001 8:52 am
2085
I don't see how a mailserver implementation requires a GUI. Unless you mean admin tools.. ... From: ravi kanth <sai_ravi_sai@...> To:...
Greg Munt
greg@...
Apr 2, 2001 9:44 am
2086
What does this layout manager do that java.awt.GridBagLayout does not? Fixed positioning is achieved with a null layout. Why would you want to simulate other...
Greg Munt
greg@...
Apr 2, 2001 9:50 am
2087
... If you are subclassing JButtons anyway you might try to let them return true on isManagingFocus and _not_ trap the TAB in processKeyEvents. Now the TAB...
Kleopatra
fastegal@...
Apr 2, 2001 1:19 pm
2088
Fair enough. We are porting a legacy DOS application and we are finding one of the single biggest impediments to getting our old programmers up to speed is...
Steve Barrett
sjbjava@...
Apr 2, 2001 4:20 pm
2089
Get your 'old programmers' to read up on layout managers. If they are too lazy to do so, I don't see that as justification for what is effectively reinventing...
Greg Munt
greg@...
Apr 2, 2001 4:39 pm
2090
Thanks, Jeanette. You are correct again. The FocusManager is getting (and consuming) the TAB characters. You are also correct that the JPanel doesn't really...
Farwell, Paul
PFarwell@...
Apr 2, 2001 5:03 pm
2091
You are preaching to the choir, there's simply no substitute for training and a bit of self-motivation.. On the other hand if I can make life a bit simpler for...
Steve Barrett
sjbjava@...
Apr 2, 2001 10:43 pm
2092
Does anyone know how to prevent the tabs of a JTabbedPane from stacking in multiple 'runs' when the layout shrinks? I want to keep all of the tabs on a single...
Farwell, Paul
PFarwell@...
Apr 3, 2001 4:58 am
2093
My only real question would be who is paying for this, and do they support this activity? After all, once your programmers get into Java (unless they are...
Greg Munt
greg@...
Apr 3, 2001 9:28 am
2094
If you don't like what BasicTabbedPaneUI implements, extend javax.swing.plaf.TabbedPaneUI, or override the public/protected method(s) that calculate the number...
Greg Munt
greg@...
Apr 3, 2001 9:34 am
2095
Paul, I think this feature is coming in JDK 1.4 (Merlin), but Claude Duguay implemented this functionality in the April issue of Java Pro magazine. He didn't...
Wilson AJ
Wilson_AJ@...
Apr 3, 2001 1:00 pm
2096
The calculation code is not only buried deeply, it is also unfactored and complex. The protected method that does the tab run calculation (calculateTabRects)...
Farwell, Paul
PFarwell@...
Apr 3, 2001 1:33 pm
2097
You can also see an example of how this can be done at http://www2.gol.com/users/tame/swing/examples/JTabbedPaneExamples2.html John ... From: Wilson AJ...
Vella, John
john_vella@...
Apr 3, 2001 1:51 pm
2098
Hi , I am using the table model in my jtable. I am getting the table model by the following code. AlarmTableModel errorModel =...
Ravi Prakash
ravi@...
Apr 3, 2001 9:33 pm
2099
This is a classic mistake in coding a remove loop. You are changing the index and no. of elements at the same time. So, in the second iteration removeRow(1)...
Joshi, Shrikant
sjoshi@...
Apr 3, 2001 10:05 pm
2100
Dear Sir/Ma'am, It was a pleasure going through your website. We, IT&T are the leading e Transition Company in India. Our division 'net manage it' is a premier...
Sumita Roy
SumitaR@...
Apr 4, 2001 4:45 am
2101
The WaitCursorEventQueue technique does not appear to work under 1.3. A SetCursor on the frame does not change the cursor for most of the frame's guts (is...
Dan Snider
dsnider@...
Apr 4, 2001 9:36 pm
2102
I've been looking into a similar problem. Seems like there are really two issues here - first, the logic for determining when to show the hourglass and,...
Farwell, Paul
PFarwell@...
Apr 5, 2001 1:41 am
2103
Hi, Is it possible to create a JInternalFrame in a JDesktopPane, and be able to draw on the JInternalFrame using the mouse. I know this can be done with...
ravi kanth
sai_ravi_sai@...
Apr 5, 2001 4:03 am
2104
All - I'm about to do something rash, and I'd like to ask your advice. (;->) We're considering reversing the functions of the tab and ctrl-tab keys for ...
Keith Bennett
keithb@...
Apr 5, 2001 5:24 am
2105
All - Thanks for all your suggestions regarding getting the JRE's select all functionality for a menu item. I decided to take this approach: when the Select...