mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
- Add scalable icon into tarball
- let icons install into proper locations - use theme routines to load proper icon (using this for loading toolbar icons would be another step how to synchronize LyX with its environment.) Patch from Timo Kluck. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40418 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f41057cae6
commit
2b36e0a860
@ -22,7 +22,7 @@ SUBDIRS = config development intl po $(BOOST) src sourcedoc lib \
|
|||||||
EXTRA_DIST = ANNOUNCE INSTALL.autoconf RELEASE-NOTES UPGRADING \
|
EXTRA_DIST = ANNOUNCE INSTALL.autoconf RELEASE-NOTES UPGRADING \
|
||||||
INSTALL.Win32 INSTALL.MacOSX INSTALL.scons INSTALL.cmake \
|
INSTALL.Win32 INSTALL.MacOSX INSTALL.scons INSTALL.cmake \
|
||||||
README.Win32 README.Cygwin README.localization lyx.1in \
|
README.Win32 README.Cygwin README.localization lyx.1in \
|
||||||
autogen.sh lib/lyx.desktop
|
autogen.sh lib/lyx.desktop lib/images/lyx.svg
|
||||||
|
|
||||||
man_MANS = lyx.1
|
man_MANS = lyx.1
|
||||||
|
|
||||||
|
@ -61,6 +61,10 @@ The following LyX key bindings have been changed:
|
|||||||
The binding to "C-minus" has changed to "C-S-underscore".
|
The binding to "C-minus" has changed to "C-S-underscore".
|
||||||
|
|
||||||
|
|
||||||
|
Linux desktop file specification and scalable icon has been included
|
||||||
|
into the tarball.
|
||||||
|
|
||||||
|
|
||||||
New external programs and libraries:
|
New external programs and libraries:
|
||||||
------------------------------------
|
------------------------------------
|
||||||
|
|
||||||
|
@ -1606,6 +1606,19 @@ dist_tex_DATA = \
|
|||||||
tex/lyxskak.sty \
|
tex/lyxskak.sty \
|
||||||
tex/revtex.cls
|
tex/revtex.cls
|
||||||
|
|
||||||
|
if !INSTALL_WINDOWS
|
||||||
|
if !INSTALL_MACOSX
|
||||||
|
# install application icons. The 'hicolor' theme is the default theme
|
||||||
|
# where applications themselves should install their icons.
|
||||||
|
scalableappiconsdir = $(datadir)/icons/hicolor/scalable/apps
|
||||||
|
scalableappicons_DATA = images/lyx.svg
|
||||||
|
|
||||||
|
fixedappiconsdir = $(datadir)/icons/hicolor/48x48/apps
|
||||||
|
fixedappicons_DATA = images/lyx.png
|
||||||
|
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
# subscript.sty is not in dist_tex_DATA since we don't want to install it
|
# subscript.sty is not in dist_tex_DATA since we don't want to install it
|
||||||
# (it is part of TeXLive). We include it in our source package only so that
|
# (it is part of TeXLive). We include it in our source package only so that
|
||||||
# packagers may decide to install it (e.g. for MikTeX).
|
# packagers may decide to install it (e.g. for MikTeX).
|
||||||
|
@ -444,11 +444,18 @@ GuiView::GuiView(int id)
|
|||||||
setAttribute(Qt::WA_DeleteOnClose, true);
|
setAttribute(Qt::WA_DeleteOnClose, true);
|
||||||
|
|
||||||
#if (!defined(Q_WS_WIN) && !defined(Q_WS_MACX))
|
#if (!defined(Q_WS_WIN) && !defined(Q_WS_MACX))
|
||||||
|
// QIcon::fromTheme was introduced in Qt 4.6
|
||||||
|
#if (QT_VERSION >= 0x040600)
|
||||||
// assign an icon to main form. We do not do it under Qt/Win or Qt/Mac,
|
// assign an icon to main form. We do not do it under Qt/Win or Qt/Mac,
|
||||||
// since the icon is provided in the application bundle.
|
// since the icon is provided in the application bundle. We use a themed
|
||||||
|
// version when available and use the bundled one as fallback.
|
||||||
|
setWindowIcon(QIcon::fromTheme("lyx", getPixmap("images/", "lyx", "png")));
|
||||||
|
#else
|
||||||
setWindowIcon(getPixmap("images/", "lyx", "png"));
|
setWindowIcon(getPixmap("images/", "lyx", "png"));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
#if (QT_VERSION >= 0x040300)
|
#if (QT_VERSION >= 0x040300)
|
||||||
// use tabbed dock area for multiple docks
|
// use tabbed dock area for multiple docks
|
||||||
// (such as "source" and "messages")
|
// (such as "source" and "messages")
|
||||||
|
Loading…
Reference in New Issue
Block a user