2012-12-09 15:34:32 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
|
|
|
# This file is part of the LibreOffice project.
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
|
2013-04-06 06:10:54 -05:00
|
|
|
$(eval $(call gb_UIConfig_UIConfig,svx))
|
2012-12-09 15:34:32 -06:00
|
|
|
|
2013-04-06 06:10:54 -05:00
|
|
|
$(eval $(call gb_UIConfig_add_uifiles,svx,\
|
2013-02-21 11:17:52 -06:00
|
|
|
svx/uiconfig/ui/acceptrejectchangesdialog \
|
2013-01-09 14:10:12 -06:00
|
|
|
svx/uiconfig/ui/asianphoneticguidedialog \
|
Tutorial step #1 initial .ui prototype
1. Give the dialog the right title, "Chinese Conversion"
2. save as chineseconversiondialog.ui to <module>/uiconfig/ui
3. add to <module/UI_<module>.mk
4. Add the dialog action area buttons
5.1. use stock gtk-ok, gtk-cancel, gtk-help, etc. for standard buttons
5.2. call them "ok", "cancel", "help" for consistency
6. Visually the old dialog has two frames, "Conversion direction"
and "Common terms"
6.1. Add a GtkGrid, one column, two rows
6.2. Add a GtkFrame to each
6.3. Copy and paste in the frame titles from the .src
6.4. Format the frame labels to use bold text and not bold markup
as per https://live.gnome.org/GnomeGoals/RemoveMarkupInMessages
7. Conversion direction has two radio buttons
7.1. Add a GtkGrid, one column, two rows to Conversion direction frame
7.2. Add two radiobuttons, cut and paste in text from .src
7.3. Convert vcl "~" mnemonic indication to .ui "_" and click use underline
7.4. Group radiobutton1 with radiobutton2 and radiobutton2 with radiobutton1
7.5. Set the radiobuttons that are not to be default selected as inactive
8. Common terms has one checkbox and a pushbutton
8.1. Add a GtkGrid, two columns, one row
8.2. Add a checkbox and button, copy and paste in text from .src
8.3. do the ~ to _ + underscore conversion
Change-Id: I49af68b8280876d8687fe9ecad4d80d12c9607c4
2013-01-22 07:04:51 -06:00
|
|
|
svx/uiconfig/ui/chineseconversiondialog \
|
2012-12-10 06:03:08 -06:00
|
|
|
svx/uiconfig/ui/compressgraphicdialog \
|
2013-05-28 05:47:28 -05:00
|
|
|
svx/uiconfig/ui/deleteheaderdialog \
|
|
|
|
svx/uiconfig/ui/deletefooterdialog \
|
2013-02-28 21:44:20 -06:00
|
|
|
svx/uiconfig/ui/headfootformatpage \
|
2013-04-29 08:44:11 -05:00
|
|
|
svx/uiconfig/ui/findreplacedialog \
|
2013-07-08 10:00:09 -05:00
|
|
|
svx/uiconfig/ui/optgridpage \
|
2013-09-30 03:22:50 -05:00
|
|
|
svx/uiconfig/ui/passwd \
|
2013-02-21 11:17:52 -06:00
|
|
|
svx/uiconfig/ui/redlinecontrol \
|
2013-02-20 10:59:49 -06:00
|
|
|
svx/uiconfig/ui/redlinefilterpage \
|
2013-02-21 09:54:57 -06:00
|
|
|
svx/uiconfig/ui/redlineviewpage \
|
2013-07-01 13:30:32 -05:00
|
|
|
svx/uiconfig/ui/sidebararea \
|
2013-07-16 13:21:35 -05:00
|
|
|
svx/uiconfig/ui/sidebargraphic \
|
2013-07-12 12:52:45 -05:00
|
|
|
svx/uiconfig/ui/sidebarinsert \
|
2013-06-21 05:59:57 -05:00
|
|
|
svx/uiconfig/ui/sidebarline \
|
2013-06-18 08:23:19 -05:00
|
|
|
svx/uiconfig/ui/sidebarparagraph \
|
2013-07-10 14:44:44 -05:00
|
|
|
svx/uiconfig/ui/sidebarpossize \
|
2013-06-01 19:10:34 -05:00
|
|
|
svx/uiconfig/ui/sidebartextpanel \
|
2012-12-09 15:34:32 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|