History log of /haiku/src/preferences/datatranslations/DataTranslationsWindow.cpp
Revision Date Author Comments
# 83419330 07-Feb-2019 Rob Gill <rrobgill@protonmail.com>

preferences/datatranslations Scale window with font size (Fix Bug #13166)

* Specifies minimum window size based on system font settings
(prevents clipping of message with large fonts)

Change-Id: I851e0c3604816a4e935178d1a4f33de7b7478060
Reviewed-on: https://review.haiku-os.org/c/1017
Reviewed-by: Axel Dörfler <axeld@pinc-software.de>


# 4e09cc66 29-Apr-2017 Adrien Destugues <pulkomandy@pulkomandy.tk>

DataTranslations: try to fix x86_64 build.


# 0702f3b1 30-Apr-2017 Adrien Destugues <pulkomandy@pulkomandy.tk>

DataTranslations: fix formatting of localized text

The about window relied on two sets of strings to be translated exactly
the same way and used lengths from one set to do things in the other.

Several translations got this wrong, and as a reult, the bold text in
the window was not at the expected places.

Fix by having only one set of translated strings, and build the dialog
from it.

Fixes #10559.


# 1e7a0406 30-Mar-2016 John Scipione <jscipione@gmail.com>

DataTranslation: Fix crash

just noticed this crash...

when fConfigView gets deleted by selecting a translator it
deletes its child fInfoText but we were leaving the pointer
alone.

Afterwords if you changed the panel text color in Appearance
a message gets sent that checks to see if the fInfoView
pointer is NULL, and since it isn't, procedes to dereference
the pointer and *boom* the app crashes.

Fix this by setting the fInfoText pointer to NULL when fConfig
view gets deleted. That way when you change the panel text
color it doesn't attempt to dereference the stale pointer
and everything works as it should.


# b90d36cc 24-Mar-2016 John Scipione <jscipione@gmail.com>

DataTranslations: Make window not resize

As you scroll through the list of translators keep the window width
constant by setting a minimum width. A little too narrow at 8pt,
and the window is too wide at 24pt, but at 12pt it is just right.
(at least for 1024x768).

The window width and height were not chosen arbitrarily, 598px
is just about 600px and almost exactly fits the width of our
widest translator (PNG translator). The height is 369px which comes
from the golden ratio of 1.62:1. The width of the translators are
set to exactly match this at 12pt font size. This way you don't get
any unexpected window resizing. At other font sizes the window does
resize, but, the contents still fit (mostly) nicely.

See screenshot for details:
http://insightfactory.tumblr.com/image/141980518317


# 571cffc1 24-Mar-2016 John Scipione <jscipione@gmail.com>

DataTranslation: Style fixes


# f0650dc9 09-Dec-2015 looncraz <looncraz@looncraz.net>

preferences: Convert to using Set*UIColor.

Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
Patches 0023-0037 from looncraz, unmodified.


# a1eccae9 08-Nov-2015 Markus Himmel <markus@himmel-villmar.de>

Make sure images containing BTranslators are not unloaded early

When a translator is uninstalled, BTranslatorPrivate::_RemoveTranslators is
called. This method used to unload the image containing the translator after
calling Release() on it resulting in several problems:

- If the translator was still busy, e.g. translating something while being
installed, it crashed since the image was unloaded even though its refcount
was larger than 0.
- Applications using code from one of the translators (e.g. its config view)
would crash when the translator is uninstalled (this is bug #12005).

This problem is now fixed. The roster keeps track of all translators whose
image it manages (even if the translator was already removed from the roster).
It also keeps a refcount to all images. When a translator's refcount drops to
zero and it belonged to a roster at some point, it does not delete itself, but
notifies the roster that it is ready to destruct, which then removes it from
the roster if the translator is still in it, destroys the translator, decrements
the refcount of the image and if the new refcount is zero, unloads the image.
All of this is done in a message handler, since if the translator called
TranslatorDeleted like before, the unloaded image would be referenced when
the stack is walked up.

Finally, the DataTranslations preflet is required to Acquire() the translator
whose config view it is showing, because otherwise its refcount could be reduced
to 0 and the image unloaded. BTranslatorRoster now enables users to acquire a
translator by ID. By the time the translator has to be released, it might not
be part of the roster anymore though. Since BTranslatorRoster tries not to give
out raw pointers to the translators it manages, users who acquire a translator
through a roster now are given a BTranslatorReleaseDelegate, which allows for
releasing the BTranslator exactly once and then self-destructs.

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# d0ac6099 07-Nov-2015 Humdinger <humdingerb@gmail.com>

Use B_USE_WINDOW_SPACING

Use B_USE_WINDOW_SPACING as inset from contents to window border.
Some whitespace cleanup.


# 5871779d 22-Apr-2015 Janus <janus2@ymail.com>

DataTranslations: sort translator list.

* Fixes #10353.


# 85359843 21-Apr-2015 Janus <janus2@ymail.com>

Preferences: Consistent buttons position and spacing.

* Fix DataTranslations.
* Fix Touchpad.
* Fixes #5230.


# 27627e22 12-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

DataTranslations: remove SetExplicitMinSize

It prevents the window to get big enough for some of the translators.

Fixes #11612.


# 4380baa4 09-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

DataTranslations: avoid layout jumping

* Constrain the list and "right view" sizes so the layout doesn't change
for each translator.
* Fixes #6897.


# aed35104 05-Aug-2012 Humdinger <humdingerb@gmail.com>

Close alerts with ESCAPE key.

Added SetFlags(B_CLOSE_ON_ESCAPE) or SetShortcut(index, B_ESCAPE) to BAlerts
depending if the result gets used later in the code, or if it's a one-button
BAlert.


# 546208a5 16-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

More catalog-related cleanup.

* rename B_TRANSLATE_CONTEXT to B_TRANSLATION_CONTEXT and
B_TRANSLATE_WITH_CONTEXT to B_TRANSLATE_CONTEXT, squashing a TODO
* adjust all uses of both macros in Haiku's source tree
* use correct header guard for collecting/Catalog.h

The renamed macros require adjustments to all external applications
using catalogs.


# e724a832 14-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Remove ellipsis, used wrong.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41254 a95241bf-73f2-0310-859d-f6bbb57e9c96


# eb88c867 14-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Move the info button's general informative text to the main view, and set as intro screen. Remove About window. Fix memory leak of config views. Replace the info BAlert's tab characters with a single space for more consistent spacing.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41249 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9b4ad591 13-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Make IconView icon_size:able. Adapt DataTranslations. Disable DataTranslation's info button on list deselection.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41248 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4b428674 12-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Make DataTranslations' IconView available privately in the interface kit.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41244 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 560ff447 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Use resource definition files instead of DoCatalogs rule. Rename B_TRANSLATE_APP_NAME and related macros to the more generic B_TRANSLATE_SYSTEM_NAME, to also fits add-ons, folders, etc, and make 'System name' its standard context. Change CodyCam and PoorMan's app signatures to match the overall x-vnd.Haiku-App pattern. Some clean-up. Make SlideShowSaver build again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41103 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bfb8680f 20-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Cleanup. Thanks korli!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41068 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4cbdf747 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Build fix. (fwiw, both failed revisions built fine over here, with both gcc2 and gcc4.)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40987 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bffb78de 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Build fix. CID 3165 FORWARD_NULL, avoid casting be_app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40986 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f4265833 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40985 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d374a272 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

App name localization.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40980 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1da233a7 19-Feb-2011 Siarzhuk Zharski <zharik@gmx.li>

Yet another localization fix in Data Translators.
Partialy fixes #7129.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40577 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 26e9cef8 16-Feb-2011 Siarzhuk Zharski <zharik@gmx.li>

Yet another localization patch made by Jorma Karvonen. Fixes #7117.
Corrected a bit by me.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40540 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 26747978 29-Dec-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Various build fixes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40033 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 10e2c9e0 29-Dec-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Patch by Mike Roll:localize DataTranslations. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40030 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1f1606e7 17-Aug-2010 Alex Wilson <yourpalal2@gmail.com>

Update DataTranslations to use BGroupLayout and BGridLayout instead of BALMLayout. This works around a regression with some changes I'll be committing soon, although I'd still like to find the source of it... Also do some style cleanup and remove fTranslatorNameView var which was never actually displayed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38198 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 51516391 29-Apr-2010 Axel Dörfler <axeld@pinc-software.de>

* The window is now centered on screen when opened for the first time.
* Simplified and cleaned up the "window not on screen" code.
* Enlarged the default window size a bit.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36525 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5737a67d 05-Mar-2010 Ryan Leavengood <leavengood@gmail.com>

Apply an old patch from Maxime Simon to make Data Translations use the
ALM Layout so that it is font sensitive and that translator config
views can also use the Layout API.

Fixes #3789.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35768 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 66eba86f 16-May-2007 Axel Dörfler <axeld@pinc-software.de>

* Applied patch by Jonas Sundstrom: fixed the usage of B_UTF8_ELLIPSIS hopefully
everywhere in the tree.
* Added the ellipsis to "About Haiku" in Deskbar as well.
* Minor cleanup of Deskbar's StatusView.cpp


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21156 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6d7f7b86 28-Oct-2006 Axel Dörfler <axeld@pinc-software.de>

All windows should have B_ASYNCHRONOUS_CONTROLS set.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19137 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 797de116 01-May-2006 Axel Dörfler <axeld@pinc-software.de>

* Loading and saving the settings was completely broken. I've moved to a different
file and put the window position there; loading/saving of the translators settings
looks broken in (or rather, missing from) the Translation Kit as well.
* Now uses the new watching mechanism of BTranslatorRoster to keep track of new
translators.
* Installing translators now gives better error requests, it now no longer uses
undocumented BTranslatorRoster functionality, but the new IsTranslator() method
to check if a certain file is a translator.
* Copying translators is disabled for now, though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17292 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a9b6762f 14-Mar-2006 Axel Dörfler <axeld@pinc-software.de>

The right box didn't take the border of the list view into account, and as
therefore a bit too small.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5ac11f96 11-Mar-2006 Axel Dörfler <axeld@pinc-software.de>

* Fixed various minor font sensitivity/resize problems.
* Fixed translator version info; didn't correctly displayed versions < 1.
* Drastically improved looks of that info alert.
* Nicer version alert.
* Renamed class DataTranslationsView to TranslatorListView.
* Added license.
* Cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16722 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a10cf76e 24-Jun-2005 Axel Dörfler <axeld@pinc-software.de>

Renamed src/prefs to "preferences", as the directory is usually called in BeOS.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13263 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5871779df8f5441b410d4c25070184f99d1c6b34 22-Apr-2015 Janus <janus2@ymail.com>

DataTranslations: sort translator list.

* Fixes #10353.


# 853598431c6e1af65c66e32952ed5eee1455dc0e 21-Apr-2015 Janus <janus2@ymail.com>

Preferences: Consistent buttons position and spacing.

* Fix DataTranslations.
* Fix Touchpad.
* Fixes #5230.


# 27627e22dbccc61391c4e52e2c482fa1ee53c753 12-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

DataTranslations: remove SetExplicitMinSize

It prevents the window to get big enough for some of the translators.

Fixes #11612.


# 4380baa4d72d9146e7b35baa2378272c6378c285 09-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

DataTranslations: avoid layout jumping

* Constrain the list and "right view" sizes so the layout doesn't change
for each translator.
* Fixes #6897.


# aed35104852941f0f6f3d1dcc5338b5f337d0a3c 05-Aug-2012 Humdinger <humdingerb@gmail.com>

Close alerts with ESCAPE key.

Added SetFlags(B_CLOSE_ON_ESCAPE) or SetShortcut(index, B_ESCAPE) to BAlerts
depending if the result gets used later in the code, or if it's a one-button
BAlert.


# 546208a53940a26c6379c48a7854ade1a8250fc5 16-Apr-2012 Oliver Tappe <zooey@hirschkaefer.de>

More catalog-related cleanup.

* rename B_TRANSLATE_CONTEXT to B_TRANSLATION_CONTEXT and
B_TRANSLATE_WITH_CONTEXT to B_TRANSLATE_CONTEXT, squashing a TODO
* adjust all uses of both macros in Haiku's source tree
* use correct header guard for collecting/Catalog.h

The renamed macros require adjustments to all external applications
using catalogs.


# e724a832b93000357e06b4e57596979a8819cc04 14-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Remove ellipsis, used wrong.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41254 a95241bf-73f2-0310-859d-f6bbb57e9c96


# eb88c867c10e7917c245b90c1d5d5e27c0f0e42b 14-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Move the info button's general informative text to the main view, and set as intro screen. Remove About window. Fix memory leak of config views. Replace the info BAlert's tab characters with a single space for more consistent spacing.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41249 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 9b4ad591d884d9ddf12635bee76cc23daf25bf2f 13-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Make IconView icon_size:able. Adapt DataTranslations. Disable DataTranslation's info button on list deselection.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41248 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4b428674959e4a798253ad564b6d339441a892b9 12-Apr-2011 Jonas Sundström <jonas@kirilla.com>

Make DataTranslations' IconView available privately in the interface kit.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41244 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 560ff4478d5c85455ea3e5ed5e392ef93132d545 25-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Use resource definition files instead of DoCatalogs rule. Rename B_TRANSLATE_APP_NAME and related macros to the more generic B_TRANSLATE_SYSTEM_NAME, to also fits add-ons, folders, etc, and make 'System name' its standard context. Change CodyCam and PoorMan's app signatures to match the overall x-vnd.Haiku-App pattern. Some clean-up. Make SlideShowSaver build again.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41103 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bfb8680ff152ba63a058f8f7e7f26d3abb288ba7 20-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Cleanup. Thanks korli!

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@41068 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 4cbdf7476160daf7d55cab103258101cb847081c 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Build fix. (fwiw, both failed revisions built fine over here, with both gcc2 and gcc4.)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40987 a95241bf-73f2-0310-859d-f6bbb57e9c96


# bffb78de5b118ce7f46f01b4ade6bced61bb9ce4 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Build fix. CID 3165 FORWARD_NULL, avoid casting be_app.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40986 a95241bf-73f2-0310-859d-f6bbb57e9c96


# f4265833aa1b34968af1cbeb7479784acf094d85 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

Cleanup.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40985 a95241bf-73f2-0310-859d-f6bbb57e9c96


# d374a27286b8a52974a97dba0d5966ea026a665d 16-Mar-2011 Jonas Sundström <jonas@kirilla.com>

App name localization.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40980 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1da233a71fe159b71ce7437b9acb5252adff4754 19-Feb-2011 Siarzhuk Zharski <zharik@gmx.li>

Yet another localization fix in Data Translators.
Partialy fixes #7129.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40577 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 26e9cef813628659eb8c2fa689bd1821b121efb4 16-Feb-2011 Siarzhuk Zharski <zharik@gmx.li>

Yet another localization patch made by Jorma Karvonen. Fixes #7117.
Corrected a bit by me.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40540 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 267479782d9bfb61695ace95cc46e594186bdfd0 29-Dec-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Various build fixes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40033 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 10e2c9e012d564d10ee345cc35a2c179d331ebcc 29-Dec-2010 Adrien Destugues <pulkomandy@pulkomandy.ath.cx>

Patch by Mike Roll:localize DataTranslations. Thanks!


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40030 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 1f1606e7455be02152a72b5f505213096937e1c4 17-Aug-2010 Alex Wilson <yourpalal2@gmail.com>

Update DataTranslations to use BGroupLayout and BGridLayout instead of BALMLayout. This works around a regression with some changes I'll be committing soon, although I'd still like to find the source of it... Also do some style cleanup and remove fTranslatorNameView var which was never actually displayed.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38198 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5151639147e42ec00001b5bfe73ba29501e6c929 29-Apr-2010 Axel Dörfler <axeld@pinc-software.de>

* The window is now centered on screen when opened for the first time.
* Simplified and cleaned up the "window not on screen" code.
* Enlarged the default window size a bit.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36525 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5737a67d71c99b6a71992f3699748c36d3a630dc 05-Mar-2010 Ryan Leavengood <leavengood@gmail.com>

Apply an old patch from Maxime Simon to make Data Translations use the
ALM Layout so that it is font sensitive and that translator config
views can also use the Layout API.

Fixes #3789.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35768 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 66eba86f4b3c2eef6462d090e93245fc60d7127b 16-May-2007 Axel Dörfler <axeld@pinc-software.de>

* Applied patch by Jonas Sundstrom: fixed the usage of B_UTF8_ELLIPSIS hopefully
everywhere in the tree.
* Added the ellipsis to "About Haiku" in Deskbar as well.
* Minor cleanup of Deskbar's StatusView.cpp


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21156 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 6d7f7b86e1f81dba425aac5c637d38739374e8cf 28-Oct-2006 Axel Dörfler <axeld@pinc-software.de>

All windows should have B_ASYNCHRONOUS_CONTROLS set.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19137 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 797de116a2f37dea6d25d76b6580954f231113f3 01-May-2006 Axel Dörfler <axeld@pinc-software.de>

* Loading and saving the settings was completely broken. I've moved to a different
file and put the window position there; loading/saving of the translators settings
looks broken in (or rather, missing from) the Translation Kit as well.
* Now uses the new watching mechanism of BTranslatorRoster to keep track of new
translators.
* Installing translators now gives better error requests, it now no longer uses
undocumented BTranslatorRoster functionality, but the new IsTranslator() method
to check if a certain file is a translator.
* Copying translators is disabled for now, though.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17292 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a9b6762f49a6b4575cbe1d9af4a0f222b19b93e6 14-Mar-2006 Axel Dörfler <axeld@pinc-software.de>

The right box didn't take the border of the list view into account, and as
therefore a bit too small.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16796 a95241bf-73f2-0310-859d-f6bbb57e9c96


# 5ac11f960a2b137821c95b996b8232863383bbbd 11-Mar-2006 Axel Dörfler <axeld@pinc-software.de>

* Fixed various minor font sensitivity/resize problems.
* Fixed translator version info; didn't correctly displayed versions < 1.
* Drastically improved looks of that info alert.
* Nicer version alert.
* Renamed class DataTranslationsView to TranslatorListView.
* Added license.
* Cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16722 a95241bf-73f2-0310-859d-f6bbb57e9c96


# a10cf76ef5b9e8c726ebc47183abd6943023cf8f 24-Jun-2005 Axel Dörfler <axeld@pinc-software.de>

Renamed src/prefs to "preferences", as the directory is usually called in BeOS.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13263 a95241bf-73f2-0310-859d-f6bbb57e9c96