uic-user Mailing List for UICollection
Brought to you by:
zander
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(10) |
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(5) |
Feb
(8) |
Mar
(59) |
Apr
(14) |
May
(32) |
Jun
(19) |
Jul
(6) |
Aug
(18) |
Sep
(11) |
Oct
|
Nov
(12) |
Dec
(11) |
| 2004 |
Jan
(34) |
Feb
(37) |
Mar
|
Apr
|
May
(29) |
Jun
(27) |
Jul
(24) |
Aug
(7) |
Sep
(7) |
Oct
(1) |
Nov
(6) |
Dec
(51) |
| 2005 |
Jan
(21) |
Feb
(8) |
Mar
(3) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(3) |
Sep
(1) |
Oct
(5) |
Nov
(6) |
Dec
|
| 2006 |
Jan
(2) |
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Roy v. d. K. <ro...@va...> - 2008-03-09 20:09:07
|
Hi James, Welcome to UIC. I am sorry for the 'odd' format that is on the website now. I have heard a succes for people after they have renamed the file to uic.tar.gz. I am pretty sure winzip (and probably winrar too) understands that format. If that doesn't work you can try the CVS version. I don't think NaturalLayout hasn't changed since the latest public release. So that shouldn't make any difference. Hope that helps Roy PS: Next version will be available in zip and tar.gzip format. On Friday 07 March 2008 19:51:29 Longyu Mei wrote: > Hi there, > > I just downloaded the NaturalLayout compressed file ( > > http://uic.sourceforge.net/index.phtml?target=product/NaturalLayout/view.ph >tml ) and want to have a look at it. But I cannot uncompress it. The > downloaded file is a src-2.1.1_uic.tar file. After I uncompress it with my > WinRAR (in WindowsXP) the result file is a src-2.1.1_uic file. I have no > idea how to handle that file. > > Anybody can help me? > > thanks > > James > > > --------------------------------- > Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it > now. |
|
From: Longyu M. <lm...@ya...> - 2008-03-07 18:51:43
|
Hi there, I just downloaded the NaturalLayout compressed file ( http://uic.sourceforge.net/index.phtml?target=product/NaturalLayout/view.phtml ) and want to have a look at it. But I cannot uncompress it. The downloaded file is a src-2.1.1_uic.tar file. After I uncompress it with my WinRAR (in WindowsXP) the result file is a src-2.1.1_uic file. I have no idea how to handle that file. Anybody can help me? thanks James --------------------------------- Be a better friend, newshound, and know-it-all with Yahoo! Mobile. Try it now. |
|
From: Roy v. d. K. <rva...@fa...> - 2008-02-11 21:38:09
|
Hi Mathew,
Thanks for trying out UIC. Great to hear it (the basis) works for you. We use
most of the components on a daily basis as well. Although UIC hasn't been on
heavy development there are still some things I'd like to get done.
I will investigate your patch since it sounds like it will improve usability a
great deal. Hopefully a release can be created in the near future, containing
your patch. Previous fixes where more java 1.6 targetted as well.. and some
fixes are only in CVS and not online. So I guess it's time for a new version
anyways :)
Thanks again for your feedback and happy coding
Roy
On Friday 08 February 2008 22:08:16 Matthew Bellew wrote:
> I found your project today and started working with it. FileChooser to
> be a great improvement over JFileChooser. I found that typing
> directories (especially absolute paths) into the file area did not work
> well. Even though there is a directory combo box, I think users are
> used to being able to navigate from here.
>
> I made these changes for my own use. Please feel free to use if you
> find them useful.
>
> private void acceptFileSlot() {
> File f = getSelectedFile();
> if (f != null ) {
> if (f.isDirectory()) {
> directory.setSelectedItem(f);
> + fileName.setSelectedItem(""); // clear typed
> directory from fileName after accepting
> }
> else {
> // store selected files...
> storeLastVisitedFiles(f);
> // notify listeners a File has been selected..
> firePropertyChange(FILE_ACCEPTED, null, f);
> }
> }
> }
>
>
> public File[] getSelectedFiles() {
> Object selectedItem = fileName.getSelectedItem();
> if (selectedItem == null || selectedItem.equals("")) return new
> File[0];
> // it might be a file selected from history...
> // this cannot be a string since otherwise "the current
> directory" will be added to..
> if (selectedItem instanceof File) return new
> File[]{(File)selectedItem};
>
> String selectedString = ((String)selectedItem).trim();
> if (selectedString.charAt(0) != '\"')
> {
> + File f = getFile((File)directory.getSelectedItem(),
> selectedString);
> + return f == null ? new File[0] : new File[] {f};
> }
> ArrayList fileNames = new ArrayList();
> File dir = (File)directory.getSelectedItem();
> int indexOfQuote = -1;
> while ( (indexOfQuote = selectedString.indexOf('\"',
> indexOfQuote +1)) != -1) {
> int endIndexOfQuote = selectedString.indexOf('\"',
> indexOfQuote +1);
> + File f = getFile(dir,
> selectedString.substring(indexOfQuote+1, endIndexOfQuote));
> + if (null != f)
> + fileNames.add(f);
> indexOfQuote = endIndexOfQuote;
> if (indexOfQuote < 0) break;
> }
> return (File[]) fileNames.toArray(new File[0]);
> }
>
> + static boolean fileMustExist = true;
> +
> + protected static File getFile(File dir, String path)
> + {
> + File f = new File(path);
> + if (!(f.isAbsolute() || path.startsWith("/") ||
> path.startsWith(File.separator)))
> + f = new File(dir,path);
> + f = getFile(f);
> + if (fileMustExist && !f.exists())
> + return null;
> + // remove .. if any from path
> + try { f = f.getCanonicalFile(); } catch (IOException x) {}
> + return f;
> + }
>
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> %(real_name) mailing list
> %(real_name)s@%(host_name)s
> %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s
--
Vriendelijke groet
Roy van der Kuil
Factotum Media
|
|
From: Matthew B. <mat...@la...> - 2008-02-08 21:08:21
|
I found your project today and started working with it. FileChooser to
be a great improvement over JFileChooser. I found that typing
directories (especially absolute paths) into the file area did not work
well. Even though there is a directory combo box, I think users are
used to being able to navigate from here.
I made these changes for my own use. Please feel free to use if you
find them useful.
private void acceptFileSlot() {
File f = getSelectedFile();
if (f != null ) {
if (f.isDirectory()) {
directory.setSelectedItem(f);
+ fileName.setSelectedItem(""); // clear typed
directory from fileName after accepting
}
else {
// store selected files...
storeLastVisitedFiles(f);
// notify listeners a File has been selected..
firePropertyChange(FILE_ACCEPTED, null, f);
}
}
}
public File[] getSelectedFiles() {
Object selectedItem = fileName.getSelectedItem();
if (selectedItem == null || selectedItem.equals("")) return new
File[0];
// it might be a file selected from history...
// this cannot be a string since otherwise "the current
directory" will be added to..
if (selectedItem instanceof File) return new
File[]{(File)selectedItem};
String selectedString = ((String)selectedItem).trim();
if (selectedString.charAt(0) != '\"')
{
+ File f = getFile((File)directory.getSelectedItem(),
selectedString);
+ return f == null ? new File[0] : new File[] {f};
}
ArrayList fileNames = new ArrayList();
File dir = (File)directory.getSelectedItem();
int indexOfQuote = -1;
while ( (indexOfQuote = selectedString.indexOf('\"',
indexOfQuote +1)) != -1) {
int endIndexOfQuote = selectedString.indexOf('\"',
indexOfQuote +1);
+ File f = getFile(dir,
selectedString.substring(indexOfQuote+1, endIndexOfQuote));
+ if (null != f)
+ fileNames.add(f);
indexOfQuote = endIndexOfQuote;
if (indexOfQuote < 0) break;
}
return (File[]) fileNames.toArray(new File[0]);
}
+ static boolean fileMustExist = true;
+
+ protected static File getFile(File dir, String path)
+ {
+ File f = new File(path);
+ if (!(f.isAbsolute() || path.startsWith("/") ||
path.startsWith(File.separator)))
+ f = new File(dir,path);
+ f = getFile(f);
+ if (fileMustExist && !f.exists())
+ return null;
+ // remove .. if any from path
+ try { f = f.getCanonicalFile(); } catch (IOException x) {}
+ return f;
+ }
|
|
From: Graham S. <gra...@gm...> - 2007-03-26 14:51:59
|
Thanks for the quick responses - i look forward to a new release, though i'm not in any real hurry for it. Graham On 3/21/07, Thomas Zander <za...@kd...> wrote: > On Tuesday 20 March 2007 08:43, roy van der kuil wrote: > > I think we need to make a release very soon > > Let me know if you need any assistance with that ;) > -- > Thomas Zander > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > %(real_name) mailing list > %(real_name)s@%(host_name)s > %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s > > |
|
From: Thomas Z. <za...@kd...> - 2007-03-21 08:19:00
|
On Tuesday 20 March 2007 08:43, roy van der kuil wrote: > I think we need to make a release very soon Let me know if you need any assistance with that ;) =2D-=20 Thomas Zander |
|
From: roy v. d. k. <rva...@fa...> - 2007-03-20 07:44:55
|
Hi Graham, I think we need to make a release very soon :). The last changes we made included fixes for java 1.5 and 6. Especially for the date edit component. I am not sure if you can manage to build it yourself from the latest sourcecode available in CVS. If not we will probably be making a release for this so that you can download the latest snapshot from sourceforge. Thanks for your bug-report and time! -Roy On Monday 19 March 2007 05:32, Graham Stewart wrote: > I'm also seeing this problem. I'm running UIC-2.0 on Java 1.5.0_07 on > WinXP and seeing a problem where the first popup shows tiny text, but > if i either change the month or hide and reopen the popup, it works > fine. > > Here's a screenshot of what's going on > > http://graha.ms/uic.png > > Any ideas? > > thanks > Graham > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > %(real_name) mailing list > %(real_name)s@%(host_name)s > %(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s |
|
From: Graham S. <gra...@gm...> - 2007-03-19 04:32:53
|
I'm also seeing this problem. I'm running UIC-2.0 on Java 1.5.0_07 on WinXP and seeing a problem where the first popup shows tiny text, but if i either change the month or hide and reopen the popup, it works fine. Here's a screenshot of what's going on http://graha.ms/uic.png Any ideas? thanks Graham |
|
From: Roy v. d. K. <ro...@va...> - 2006-03-22 14:46:21
|
Hi Dennis, Could you let us know a little more about this problem? What kind of java version are you using and which uic version? Thanks Roy van der Kuil On Tuesday 21 March 2006 11:12, Haupt, Dennis wrote: > when i click on a uicdateedit combobox, the labels/buttons containing the > days aren't visible. after changing the month/year/date manually, > everything is fine. what's wrong? is there something i have to do before > using it in addition to setting the date? |
|
From: Haupt, D. <d....@ti...> - 2006-03-21 10:13:12
|
when i click on a uicdateedit combobox, the labels/buttons containing = the days aren't visible. after changing the month/year/date manually, = everything is fine. what's wrong? is there something i have to do before using it in = addition to setting the date? |
|
From: Roy v. d. K. <ro...@va...> - 2006-03-10 08:09:05
|
Hi Oleg, Thanks for the translations. I have added them to CVS. I plan to make a new release soon, so these translations will be part of that release. Thanks again, -Roy van der Kuil On Thursday 09 March 2006 17:35, Oleg Klymenko wrote: > Feel free to any questions and remarks. > > Best regards. > Oleg. |
|
From: Oleg K. <ok...@me...> - 2006-03-09 16:35:41
|
Feel free to any questions and remarks. Best regards. Oleg. |
|
From: <ro...@va...> - 2006-01-06 14:09:29
|
Hi Jesse, In all examples the ....Base.java files are generated classes. They are generated from .ui files, created by designer. There are 3 ways to create these files: 1. with ant (see the examples) 2. by hand (use the uic.UIC class) 3. By maven (this is currently in development and not completly perfect yet, but I use it in many projects) Normally we provide an ant file and you should be able to call ant compile. This would create the java file(s). Hope this help. =Roy > I can't find the java source file for FontSelectionBase... where is it? > > --Jesse Barnum, President, 360Works > http://www.360works.com > (770) 234-9293 > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files for problems? Stop! Download the new AJAX search engine that > makes searching your log files as easy as surfing the web. DOWNLOAD > SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > [INVALID FOOTER] |
|
From: Jesse B. <js...@36...> - 2006-01-06 05:49:15
|
I can't find the java source file for FontSelectionBase... where is it? --Jesse Barnum, President, 360Works http://www.360works.com (770) 234-9293 |
|
From: Thomas Z. <za...@kd...> - 2005-11-14 13:12:13
|
On Mon, Nov 14, 2005 at 11:50:05AM +0800, FCG HU Zhengmao wrote: > Is there a translation in Chinese? I could help is there is not yet. see: http://uic.sourceforge.net/index.phtml?target=translation.html We have 5 dialects of chinese already available and translated :) Thanks for the offer, though! -- Thomas Zander |
|
From: Thomas Z. <za...@kd...> - 2005-11-14 13:10:35
|
On Mon, Nov 14, 2005 at 08:42:20PM +0800, FCG HU Zhengmao wrote: > hi, > > I am writing my own main window, that is, I used mainFrame = new > JFrame(...) to create my own main window, and used > mainFrame.getContentPane().add(...) to add my own Panel (subclass of the > class generated by UIC, which is a subclass of JPanel) to the main > window. Just an advice; try to create a MainWindow instead for more features (see webpage for more info) > I have a button on the main window, and I would like to pop up a modal > dialog window whenever the button is pressed. > > Should I create the dialog window in QtDesigner as a Widget or Dialog? > And how could I let the dialog pop up? I would advice you create a widget in designer and then set that widget on a SimpleDialog instead of a normal JDialog. see: http://uic.sourceforge.net/api/20/uic/widgets/MainWindow.html http://uic.sf.net/index.phtml?target=product/StandardDialog/view.phtml Cheers! -- Thomas Zander |
|
From: FCG HU Z. <Zhe...@al...> - 2005-11-14 12:42:42
|
hi, =20 I am writing my own main window, that is, I used mainFrame =3D new JFrame(...) to create my own main window, and used mainFrame.getContentPane().add(...) to add my own Panel (subclass of the class generated by UIC, which is a subclass of JPanel) to the main window. I have a button on the main window, and I would like to pop up a modal dialog window whenever the button is pressed. Should I create the dialog window in QtDesigner as a Widget or Dialog? And how could I let the dialog pop up? If I create the dialog window as a Dialog, the generated class is a subclass of JDialog, but I can not find a way to set its parent. The constructor JDialog(Frame parent, String title, boolean modal) is not visible to my code. Maybe I need to make it a Widget, and then add it to the ContentPane of a new JDialog(parent, title, true)? - James |
|
From: FCG HU Z. <Zhe...@al...> - 2005-11-14 03:50:40
|
Is there a translation in Chinese? I could help is there is not yet. -----Original Message----- From: uic...@li... = [mailto:uic...@li...] On Behalf Of Roy van der = Kuil Sent: 2005=C4=EA11=D4=C27=C8=D5 22:56 To: uic...@li... Cc: Gilles Vigui=A8=A6 Subject: Re: Translation files in french Hi Gilles, Thanks for the translations. I have added them to cvs and updated the = website accordingly. I will see if I can update the demo within a few days. On Friday 04 November 2005 18:16, Gilles Vigui=A8=A6 wrote: > Hi all, > > Congratulations for this project, this is really nice. Here is my=20 > contribution, translation files in french. They might be alright, but=20 > should probably be checked by another french person. > > Bye, > Gilles ------------------------------------------------------- SF.Net email is sponsored by: Tame your development challenges with Apache's Geronimo App Server. = Download it for free - -and be entered to win a 42" plasma tv or your = very own Sony(tm)PSP. Click here to play: = http://sourceforge.net/geronimo.php [INVALID FOOTER] |
|
From: Roy v. d. K. <ro...@va...> - 2005-11-07 14:57:00
|
Hi Gilles, Thanks for the translations. I have added them to cvs and updated the websi= te=20 accordingly. I will see if I can update the demo within a few days. On Friday 04 November 2005 18:16, Gilles Vigui=E9 wrote: > Hi all, > > Congratulations for this project, this is really nice. Here is my > contribution, translation files in french. They might be alright, but > should probably be checked by another french person. > > Bye, > Gilles |
|
From: <gil...@fr...> - 2005-11-04 16:15:15
|
Hi all, Congratulations for this project, this is really nice. Here is my contribution, translation files in french. They might be alright, but should probably be checked by another french person. Bye, Gilles |
|
From: Roy v. d. K. <rva...@fa...> - 2005-10-25 06:38:42
|
Hi James, I must say I am not using the windows version myself (I work on linux). But on linux I work with version 3.3, so I guess the 3.3 for windows should work as well. Please let us know if you run into any problems using either version, so I can have a look as well. Good luck, -Roy On Monday 24 October 2005 16:31, FCG HU Zhengmao wrote: > hi, > > Is there any guideline on QtDesigner compatibility? For example, which > version of QtDesigner works best with UIC, qt-win-free-mingw-3.3.4-3 or > qt-win-opensource-4.0.1-mingw? > > Thanks, > James HU |
|
From: FCG HU Z. <Zhe...@al...> - 2005-10-24 14:31:58
|
aGksDQogDQpJcyB0aGVyZSBhbnkgZ3VpZGVsaW5lIG9uIFF0RGVzaWduZXIgY29tcGF0aWJpbGl0 eT8gRm9yIGV4YW1wbGUsIHdoaWNoIHZlcnNpb24gb2YgUXREZXNpZ25lciB3b3JrcyBiZXN0IHdp dGggVUlDLCBxdC13aW4tZnJlZS1taW5ndy0zLjMuNC0zIG9yIHF0LXdpbi1vcGVuc291cmNlLTQu MC4xLW1pbmd3Pw0KIA0KVGhhbmtzLA0KSmFtZXMgSFUNCg== |
|
From: <ro...@va...> - 2005-10-23 10:00:45
|
Hi All, Just like to announce some initial maven support for maven 2.0. It's not quite ready for placement on the maven ibiblio plugins because of lack of documentation. For cvs users please checkout the 'maven' directory of the uic project and follow the directions in the 'readme'. -Roy |
|
From: Roy v. d. K. <rva...@fa...> - 2005-10-17 20:28:07
|
Hi Rafael,
Sorry for my late reaction. I've been a bit busy lately. Thanks for the
translation, I will add it to cvs.
When you want to use you're own translation, you need to set the localisation
settings.
For example:
Translate.setLocale("nl","NL");
For the dutch localization.
Hope that helps.
-Roy
On Sunday 16 October 2005 01:47, Rafael Gassner wrote:
> Hi all,
>
> Im using ConfigDialog and want to set its language to brazilian portuguese
> (different from portugal portuguese that is partially available). Can
> someone help me?
>
> Using it like this:
>
> class ShowConfig implements ActionListener
> {
> public void actionPerformed(ActionEvent ae)
> {
> ConfigDialog.showConfigDialog(FTelaMenuPrincipal.this, new UICTheme());
> }
> }
>
> Attached is the language file for brazilian portuguese
>
> It would be nice to have the source for running demos on the site.
>
> Thanks a lot!
|
|
From: Thomas Z. <za...@kd...> - 2005-09-02 10:09:23
|
Try to put the Dialog.show() method inside a invokeLater() which seems to be called from: de.innoface.ece.wfe.dialogs.NewFunctionDialog.showDialog(NewFunctionDialog.= java:190) On Wednesday 31 August 2005 09:54, Filip Polsakiewicz wrote: > [java] at java.awt.Dialog.show(Unknown Source) > > [java] at > de.innoface.ece.wfe.dialogs.NewFunctionDialog.showDialog(NewFunctionDi >alog.java:190) > > [java] at > de.innoface.ece.wfe.panels.WFEActionPropertyPanel.addPreFunction(WFEAc >tionPropertyPanel.java:199) > > [java] at > de.innoface.ece.wfe.panels.WFEActionPropertyPanel$1.actionPerformed(WF >EActionPropertyPanel.java:92) > > [java] at javax.swing.AbstractButton.fireActionPerformed(Unknown > Source) > > [java] at > javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown > Source) =2D-=20 Thomas Zander |