Compare commits

...

40 Commits

Author SHA1 Message Date
Andrei Stepanov 9e5afc6b4d Translated using Weblate (Russian)
1 week ago
Andrei Stepanov 5bbd8ebf0d Added translation using Weblate (Russian)
1 week ago
Andrei Stepanov 70d8e947aa Translated using Weblate (Russian)
1 week ago
Andrei Stepanov 5e7e179713 Added translation using Weblate (Russian)
2 weeks ago
Michele Calgaro dbb446f6bb
Remove unnecessary files
4 weeks ago
Mavridis Philippe bf94b5f4d8 Added GTK+2.0 engine
1 month ago
Michele Calgaro bb0a8ec627
Use centralized cmake version
1 month ago
Michele Calgaro 454a88c976
Replace Q_WS_* defines with TQ_WS_* equivalents
3 months ago
Michele Calgaro 5f02e9c3f3
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
4 months ago
Slávek Banko 5fb23d8504
Raise the minimum required version of CMake to 3.5.
6 months ago
Michele Calgaro 44709f1642
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
8 months ago
Michele Calgaro a47b946ea1
Replace Q_OBJECT with TQ_OBJECT
10 months ago
Michele Calgaro 1a898e5b81
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
10 months ago
Mavridis Philippe 25c1960451
Rename library twin3_iaora -> twin_iaora
10 months ago
Michele Calgaro f9d51b4ff1
Use TDE cmake macro to set version
2 years ago
Michele Calgaro 656ab0a3a6
Remove obsolete setting of CMAKE_MODULE_PATH in cmake files.
2 years ago
Slávek Banko 5c2bc8a9e2
Drop automake build support.
2 years ago
TDE Gitea 2f24505b0b Reset submodule main/applications/themes/tde-style-ia-ora/admin to latest HEAD
2 years ago
Slávek Banko e4bbcfd4b6
Raise the minimum required version of CMake to 3.1 in CMakeL10n rules.
2 years ago
Slávek Banko 669a26e0ef
Raise the minimum required version of CMake to 3.1.
2 years ago
Slávek Banko f1a743b321
Fix the lowercase letter in the name of twin style to match the other occurrences.
3 years ago
Slávek Banko ef1942f65a
Add CMakeL10n rules.
3 years ago
Slávek Banko ce02141dd4
Remove cmake submodule since it has now been replaced by cmake-trinity dependency.
3 years ago
TDE Gitea f78d653db8 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea 831580ea80 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea 51bfac28fa Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
3 years ago
TDE Gitea f4233dc471 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea 1dfd575a72 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea c29ac8b52e Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
3 years ago
Slávek Banko bcfba6b49d
Raise the minimum required version of CMake to 2.8.12.
3 years ago
TDE Gitea c61f1ff91c Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea e18aec4d51 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
3 years ago
TDE Gitea d6c432aadf Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
3 years ago
TDE Gitea 30c31872b6 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
4 years ago
TDE Gitea 49cf49a321 Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
4 years ago
Michele Calgaro df59331689
Removed code formatting modelines.
4 years ago
TDE Gitea 318b63771b Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
4 years ago
TDE Gitea 1092e962b1 Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
4 years ago
TDE Gitea fe8a3f0b69 Reset submodule main/applications/tde-style-ia-ora/cmake to latest HEAD
4 years ago
TDE Gitea 2e5ff70a71 Reset submodule main/applications/tde-style-ia-ora/admin to latest HEAD
4 years ago

6
.gitmodules vendored

@ -1,6 +0,0 @@
[submodule "admin"]
path = admin
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-admin
[submodule "cmake"]
path = cmake
url = https://system@scm.trinitydesktop.org/scm/git/tde-common-cmake

@ -0,0 +1,26 @@
#################################################
#
# (C) 2019 Slávek Banko
# slavek.banko (AT) axis.cz
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
##### set project version ########################
include( TDEVersion )
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
##### include our cmake modules #################
include( TDEL10n )
##### create translation templates ##############
tde_l10n_auto_add_subdirectories( )

@ -7,13 +7,16 @@
############################################
cmake_minimum_required( VERSION 2.8 )
##### set project version ########################
include( TDEVersion )
cmake_minimum_required( VERSION ${TDE_CMAKE_MINIMUM_VERSION} )
tde_set_project_version( )
#### general package setup
project( tde-style-ia-ora )
set( VERSION R14.1.0 )
#### include essential cmake modules
@ -29,7 +32,6 @@ include( CheckCXXSourceCompiles )
#### include our cmake modules
set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
include( TDEMacros )
@ -45,6 +47,13 @@ option( WITH_ALL_OPTIONS "Enable all optional support" OFF
option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} )
##### user requested modules
option( BUILD_ALL "Build all" ON )
option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} )
option( BUILD_GTK_ENGINE "Build GTK+2.0 engine" ${BUILD_ALL} )
##### configure checks
include( ConfigureChecks.cmake )
@ -64,6 +73,11 @@ set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined"
add_subdirectory( src )
##### other data ################################
tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
##### write configure files
configure_file( config.h.cmake config.h @ONLY )

@ -23,3 +23,19 @@ tde_setup_largefiles( )
if( WITH_GCC_VISIBILITY )
tde_setup_gcc_visibility( )
endif( WITH_GCC_VISIBILITY )
if( BUILD_GTK_ENGINE )
pkg_search_module( GTK gtk+-2.0 )
if( NOT GTK_FOUND )
tde_message_fatal( "The GTK+2 engine was selected for build, but GTK+2 headers were not found on your system." )
endif( )
pkg_get_variable( GTK_BIN_VERSION gtk+-2.0 gtk_binary_version )
set( INSTALL_PATH_GTK_ENGINES "${GTK_LIBDIR}/gtk-2.0/${GTK_BIN_VERSION}/engines"
CACHE PATH "The directory in which to install the theme engine library" )
message( STATUS " theme engine lib directory: ${INSTALL_PATH_GTK_ENGINES}" )
set( INSTALL_PATH_GTK_THEMES "${GTK_PREFIX}/share/themes"
CACHE PATH "The directory in which to install the theme data" )
message( STATUS " theme engine data directory: ${INSTALL_PATH_GTK_THEMES}" )
endif( BUILD_GTK_ENGINE )

@ -1,275 +0,0 @@
# Doxyfile 1.4.1-KDevelop
#---------------------------------------------------------------------------
# Project related configuration options
#---------------------------------------------------------------------------
PROJECT_NAME = ia_ora.kdevelop
PROJECT_NUMBER = 0.1
OUTPUT_DIRECTORY =
CREATE_SUBDIRS = NO
OUTPUT_LANGUAGE = English
USE_WINDOWS_ENCODING = NO
BRIEF_MEMBER_DESC = YES
REPEAT_BRIEF = YES
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
ALWAYS_DETAILED_SEC = NO
INLINE_INHERITED_MEMB = NO
FULL_PATH_NAMES = YES
STRIP_FROM_PATH = /home/montel/
STRIP_FROM_INC_PATH =
SHORT_NAMES = NO
JAVADOC_AUTOBRIEF = NO
MULTILINE_CPP_IS_BRIEF = NO
DETAILS_AT_TOP = NO
INHERIT_DOCS = YES
DISTRIBUTE_GROUP_DOC = NO
TAB_SIZE = 8
ALIASES =
OPTIMIZE_OUTPUT_FOR_C = NO
OPTIMIZE_OUTPUT_JAVA = NO
SUBGROUPING = YES
#---------------------------------------------------------------------------
# Build related configuration options
#---------------------------------------------------------------------------
EXTRACT_ALL = NO
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = NO
EXTRACT_LOCAL_CLASSES = YES
EXTRACT_LOCAL_METHODS = NO
HIDE_UNDOC_MEMBERS = NO
HIDE_UNDOC_CLASSES = NO
HIDE_FRIEND_COMPOUNDS = NO
HIDE_IN_BODY_DOCS = NO
INTERNAL_DOCS = NO
CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO
SHOW_INCLUDE_FILES = YES
INLINE_INFO = YES
SORT_MEMBER_DOCS = YES
SORT_BRIEF_DOCS = NO
SORT_BY_SCOPE_NAME = NO
GENERATE_TODOLIST = YES
GENERATE_TESTLIST = YES
GENERATE_BUGLIST = YES
GENERATE_DEPRECATEDLIST= YES
ENABLED_SECTIONS =
MAX_INITIALIZER_LINES = 30
SHOW_USED_FILES = YES
SHOW_DIRECTORIES = YES
FILE_VERSION_FILTER =
#---------------------------------------------------------------------------
# configuration options related to warning and progress messages
#---------------------------------------------------------------------------
QUIET = NO
WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES
WARN_NO_PARAMDOC = NO
WARN_FORMAT = "$file:$line: $text"
WARN_LOGFILE =
#---------------------------------------------------------------------------
# configuration options related to the input files
#---------------------------------------------------------------------------
INPUT = /home/montel/ia_ora
FILE_PATTERNS = *.c \
*.cc \
*.cxx \
*.cpp \
*.c++ \
*.java \
*.ii \
*.ixx \
*.ipp \
*.i++ \
*.inl \
*.h \
*.hh \
*.hxx \
*.hpp \
*.h++ \
*.idl \
*.odl \
*.cs \
*.php \
*.php3 \
*.inc \
*.m \
*.mm \
*.dox \
*.C \
*.CC \
*.C++ \
*.II \
*.I++ \
*.H \
*.HH \
*.H++ \
*.CS \
*.PHP \
*.PHP3 \
*.M \
*.MM \
*.C \
*.H \
*.tlh \
*.diff \
*.patch \
*.moc \
*.xpm \
*.dox
RECURSIVE = yes
EXCLUDE =
EXCLUDE_SYMLINKS = NO
EXCLUDE_PATTERNS =
EXAMPLE_PATH =
EXAMPLE_PATTERNS = *
EXAMPLE_RECURSIVE = NO
IMAGE_PATH =
INPUT_FILTER =
FILTER_PATTERNS =
FILTER_SOURCE_FILES = NO
#---------------------------------------------------------------------------
# configuration options related to source browsing
#---------------------------------------------------------------------------
SOURCE_BROWSER = NO
INLINE_SOURCES = NO
STRIP_CODE_COMMENTS = YES
REFERENCED_BY_RELATION = YES
REFERENCES_RELATION = YES
VERBATIM_HEADERS = YES
#---------------------------------------------------------------------------
# configuration options related to the alphabetical class index
#---------------------------------------------------------------------------
ALPHABETICAL_INDEX = NO
COLS_IN_ALPHA_INDEX = 5
IGNORE_PREFIX =
#---------------------------------------------------------------------------
# configuration options related to the HTML output
#---------------------------------------------------------------------------
GENERATE_HTML = YES
HTML_OUTPUT = html
HTML_FILE_EXTENSION = .html
HTML_HEADER =
HTML_FOOTER =
HTML_STYLESHEET =
HTML_ALIGN_MEMBERS = YES
GENERATE_HTMLHELP = NO
CHM_FILE =
HHC_LOCATION =
GENERATE_CHI = NO
BINARY_TOC = NO
TOC_EXPAND = NO
DISABLE_INDEX = NO
ENUM_VALUES_PER_LINE = 4
GENERATE_TREEVIEW = NO
TREEVIEW_WIDTH = 250
#---------------------------------------------------------------------------
# configuration options related to the LaTeX output
#---------------------------------------------------------------------------
GENERATE_LATEX = YES
LATEX_OUTPUT = latex
LATEX_CMD_NAME = latex
MAKEINDEX_CMD_NAME = makeindex
COMPACT_LATEX = NO
PAPER_TYPE = a4wide
EXTRA_PACKAGES =
LATEX_HEADER =
PDF_HYPERLINKS = NO
USE_PDFLATEX = NO
LATEX_BATCHMODE = NO
LATEX_HIDE_INDICES = NO
#---------------------------------------------------------------------------
# configuration options related to the RTF output
#---------------------------------------------------------------------------
GENERATE_RTF = NO
RTF_OUTPUT = rtf
COMPACT_RTF = NO
RTF_HYPERLINKS = NO
RTF_STYLESHEET_FILE =
RTF_EXTENSIONS_FILE =
#---------------------------------------------------------------------------
# configuration options related to the man page output
#---------------------------------------------------------------------------
GENERATE_MAN = NO
MAN_OUTPUT = man
MAN_EXTENSION = .3
MAN_LINKS = NO
#---------------------------------------------------------------------------
# configuration options related to the XML output
#---------------------------------------------------------------------------
GENERATE_XML = yes
XML_OUTPUT = xml
XML_SCHEMA =
XML_DTD =
XML_PROGRAMLISTING = YES
#---------------------------------------------------------------------------
# configuration options for the AutoGen Definitions output
#---------------------------------------------------------------------------
GENERATE_AUTOGEN_DEF = NO
#---------------------------------------------------------------------------
# configuration options related to the Perl module output
#---------------------------------------------------------------------------
GENERATE_PERLMOD = NO
PERLMOD_LATEX = NO
PERLMOD_PRETTY = YES
PERLMOD_MAKEVAR_PREFIX =
#---------------------------------------------------------------------------
# Configuration options related to the preprocessor
#---------------------------------------------------------------------------
ENABLE_PREPROCESSING = YES
MACRO_EXPANSION = NO
EXPAND_ONLY_PREDEF = NO
SEARCH_INCLUDES = YES
INCLUDE_PATH =
INCLUDE_FILE_PATTERNS =
PREDEFINED =
EXPAND_AS_DEFINED =
SKIP_FUNCTION_MACROS = YES
#---------------------------------------------------------------------------
# Configuration::additions related to external references
#---------------------------------------------------------------------------
TAGFILES =
GENERATE_TAGFILE = ia_ora.tag
ALLEXTERNALS = NO
EXTERNAL_GROUPS = YES
PERL_PATH = /usr/bin/perl
#---------------------------------------------------------------------------
# Configuration options related to the dot tool
#---------------------------------------------------------------------------
CLASS_DIAGRAMS = YES
HIDE_UNDOC_RELATIONS = YES
HAVE_DOT = NO
CLASS_GRAPH = YES
COLLABORATION_GRAPH = YES
GROUP_GRAPHS = YES
UML_LOOK = NO
TEMPLATE_RELATIONS = NO
INCLUDE_GRAPH = YES
INCLUDED_BY_GRAPH = YES
CALL_GRAPH = NO
GRAPHICAL_HIERARCHY = YES
DIRECTORY_GRAPH = YES
DOT_IMAGE_FORMAT = png
DOT_PATH =
DOTFILE_DIRS =
MAX_DOT_GRAPH_WIDTH = 1024
MAX_DOT_GRAPH_HEIGHT = 1024
MAX_DOT_GRAPH_DEPTH = 1000
DOT_TRANSPARENT = NO
DOT_MULTI_TARGETS = NO
GENERATE_LEGEND = YES
DOT_CLEANUP = YES
#---------------------------------------------------------------------------
# Configuration::additions related to the search engine
#---------------------------------------------------------------------------
SEARCHENGINE = NO

@ -1,167 +1,16 @@
Basic Installation
==================
These are generic installation instructions.
The `configure' shell script attempts to guess correct values for
various system-dependent variables used during compilation. It uses
those values to create a `Makefile' in each directory of the package.
It may also create one or more `.h' files containing system-dependent
definitions. Finally, it creates a shell script `config.status' that
you can run in the future to recreate the current configuration, a file
`config.cache' that saves the results of its tests to speed up
reconfiguring, and a file `config.log' containing compiler output
(useful mainly for debugging `configure').
If you need to do unusual things to compile the package, please try
to figure out how `configure' could check whether to do them, and mail
diffs or instructions to the address given in the `README' so they can
be considered for the next release. If at some point `config.cache'
contains results you don't want to keep, you may remove or edit it.
The file `configure.in' is used to create `configure' by a program
called `autoconf'. You only need `configure.in' if you want to change
it or regenerate `configure' using a newer version of `autoconf'.
The simplest way to compile this package is:
1. `cd' to the directory containing the package's source code and type
`./configure' to configure the package for your system. If you're
using `csh' on an old version of System V, you might need to type
`sh ./configure' instead to prevent `csh' from trying to execute
`configure' itself.
Running `configure' takes a while. While running, it prints some
messages telling which features it is checking for.
2. Type `make' to compile the package.
3. Type `make install' to install the programs and any data files and
documentation.
4. You can remove the program binaries and object files from the
source code directory by typing `make clean'.
Compilers and Options
=====================
Some systems require unusual options for compilation or linking that
the `configure' script does not know about. You can give `configure'
initial values for variables by setting them in the environment. Using
a Bourne-compatible shell, you can do that on the command line like
this:
CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
Or on systems that have the `env' program, you can do it like this:
env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
Compiling For Multiple Architectures
====================================
You can compile the package for more than one kind of computer at the
same time, by placing the object files for each architecture in their
own directory. To do this, you must use a version of `make' that
supports the `VPATH' variable, such as GNU `make'. `cd' to the
directory where you want the object files and executables to go and run
the `configure' script. `configure' automatically checks for the
source code in the directory that `configure' is in and in `..'.
If you have to use a `make' that does not supports the `VPATH'
variable, you have to compile the package for one architecture at a time
in the source code directory. After you have installed the package for
one architecture, use `make distclean' before reconfiguring for another
architecture.
Installation Names
==================
By default, `make install' will install the package's files in
`/usr/local/bin', `/usr/local/man', etc. You can specify an
installation prefix other than `/usr/local' by giving `configure' the
option `--prefix=PATH'.
You can specify separate installation prefixes for
architecture-specific files and architecture-independent files. If you
give `configure' the option `--exec-prefix=PATH', the package will use
PATH as the prefix for installing programs and libraries.
Documentation and other data files will still use the regular prefix.
If the package supports it, you can cause programs to be installed
with an extra prefix or suffix on their names by giving `configure' the
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
Optional Features
=================
Some packages pay attention to `--enable-FEATURE' options to
`configure', where FEATURE indicates an optional part of the package.
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
is something like `gnu-as' or `x' (for the X Window System). The
`README' should mention any `--enable-' and `--with-' options that the
package recognizes.
For packages that use the X Window System, `configure' can usually
find the X include and library files automatically, but if it doesn't,
you can use the `configure' options `--x-includes=DIR' and
`--x-libraries=DIR' to specify their locations.
Specifying the System Type
==========================
There may be some features `configure' can not figure out
automatically, but needs to determine by the type of host the package
will run on. Usually `configure' can figure that out, but if it prints
a message saying it can not guess the host type, give it the
`--host=TYPE' option. TYPE can either be a short name for the system
type, such as `sun4', or a canonical name with three fields:
CPU-COMPANY-SYSTEM
See the file `config.sub' for the possible values of each field. If
`config.sub' isn't included in this package, then this package doesn't
need to know the host type.
If you are building compiler tools for cross-compiling, you can also
use the `--target=TYPE' option to select the type of system they will
produce code for and the `--build=TYPE' option to select the type of
system on which you are compiling the package.
Sharing Defaults
================
If you want to set default values for `configure' scripts to share,
you can create a site shell script called `config.site' that gives
default values for variables like `CC', `cache_file', and `prefix'.
`configure' looks for `PREFIX/share/config.site' if it exists, then
`PREFIX/etc/config.site' if it exists. Or, you can set the
`CONFIG_SITE' environment variable to the location of the site script.
A warning: not all `configure' scripts look for a site script.
Operation Controls
==================
`configure' recognizes the following options to control how it
operates.
`--cache-file=FILE'
Use and save the results of the tests in FILE instead of
`./config.cache'. Set FILE to `/dev/null' to disable caching, for
debugging `configure'.
`--help'
Print a summary of the options to `configure', and exit.
`--quiet'
`--silent'
`-q'
Do not print messages saying which checks are being made.
`--srcdir=DIR'
Look for the package's source code in directory DIR. Usually
`configure' can determine that directory automatically.
`--version'
Print the version of Autoconf used to generate the `configure'
script, and exit.
`configure' also accepts some other, not widely useful, options.
tde-style-ia-ora relies on cmake to build.
Here are suggested default options:
-DCMAKE_INSTALL_PREFIX="/opt/trinity" \
-DCONFIG_INSTALL_DIR="/etc/trinity" \
-DSYSCONF_INSTALL_DIR="/etc/trinity" \
-DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_VERBOSE_MAKEFILE="ON" \
-DCMAKE_SKIP_RPATH="OFF" \
-DBUILD_ALL="ON" \
-DWITH_ALL_OPTIONS="ON"

@ -1,22 +0,0 @@
SUBDIRS = $(TOPSUBDIRS)
$(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
$(top_srcdir)/subdirs:
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
@cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files
package-messages:
cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common package-messages
$(MAKE) -C po merge
EXTRA_DIST = admin COPYING configure.in.in
dist-hook:
cd $(top_distdir) && perl admin/am_edit -padmin
cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs

@ -1,10 +0,0 @@
all:
@echo "This Makefile is only for the CVS repository"
@echo "This will be deleted before making the distribution"
@echo ""
$(MAKE) -f admin/Makefile.common cvs
dist:
$(MAKE) -f admin/Makefile.common dist
.SILENT:

@ -0,0 +1,31 @@
Mandriva Ia Ora theme for TDE.
Graphic theme used in Mandriva distribution, for the first time in 2007.
This served to unify the graphic appearance of Qt and GTK applications.
.
Contributing
--------------
If you wish to contribute to tde-style-ia-ora, you might do so:
- TDE Gitea Workspace (TGW) collaboration tool.
https://mirror.git.trinitydesktop.org/gitea
- TDE Weblate Translation Workspace (TWTW) collaboration tool.
https://mirror.git.trinitydesktop.org/weblate
Translations status
---------------------
### desktop files
[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/tde-style-ia-ora-desktop-files/multi-auto.svg
"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-ia-ora-desktop-files/)
### twin
[![Translations status](https://mirror.git.trinitydesktop.org/weblate/widgets/applications/-/tde-style-ia-ora-twin/multi-auto.svg
"Engage in translating")](https://mirror.git.trinitydesktop.org/weblate/projects/applications/tde-style-ia-ora-twin/)

@ -1 +0,0 @@
Subproject commit ae96f3ea4882e243513827da7c2ab889af3b1608

@ -1 +0,0 @@
Subproject commit 63b5532a298ccf95e310ae853ff53ade506daf7e

@ -1,6 +0,0 @@
#MIN_CONFIG(3.2.0)
AM_INIT_AUTOMAKE(ia_ora-kde, 1.0.8)
AC_C_BIGENDIAN
AC_CHECK_KDEMAXPATHLEN

@ -1,82 +0,0 @@
Summary: Ia Ora theme for kde
Name: ia_ora
Version: 1.0
Release: %mkrel 2
License: GPL
Group: Graphical desktop/Other
URL: http://www.mandrivalinux.com/
BuildRequires: tdelibs-devel
BuildRequires: tdebase-devel >= 3.1.94-11mdk
Source0: %{name}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
%description
Mandriva Ia Ora theme
%package kde
Summary: Mandriva theme for KDE - Widget design
Group: Graphical desktop/KDE
%description kde
Mandriva theme for KDE - Widget design
%package kde-twin
Summary: Mandriva theme for KDE - Window Decorations
Group: Graphical desktop/KDE
%description kde-twin
Mandriva theme for KDE - Window Decorations
%prep
%setup -q -n%name
%build
make -f admin/Makefile.common cvs
export TQTDIR=%qtdir
export TDEDIR=%_prefix
export LD_LIBRARY_PATH=$TQTDIR/%_lib:$TDEDIR/%_lib:$LD_LIBRARY_PATH
export PATH=$TQTDIR/bin:$TDEDIR/bin:$PATH
%configure2_5x \
%if "%{_lib}" != "lib"
--enable-libsuffix="%(A=%{_lib}; echo ${A/lib/})" \
%endif
--with-xinerama
%make
%install
rm -rf $RPM_BUILD_ROOT
%makeinstall_std
%clean
rm -rf $RPM_BUILD_ROOT
%files kde-twin
%defattr(-,root,root,-)
%_libdir/kde3/twin3_iaora.la
%_libdir/kde3/twin3_iaora.so
%_libdir/kde3/twin_iaora_config.la
%_libdir/kde3/twin_iaora_config.so
%_datadir/apps/twin/iaora.desktop
%files kde
%defattr(-,root,root,-)
%_libdir/kde3/plugins/styles/ia_ora.la
%_libdir/kde3/plugins/styles/ia_ora.so
%_datadir/apps/kstyle/themes/ia_ora.themerc
%changelog
* Thu Sep 07 2006 Laurent MONTEL <lmontel@mandriva.com> 1.0-2
- Some fixes
* Mon Sep 04 2006 Laurent MONTEL <lmontel@mandriva.com> 1.0-1
- Initial package

@ -0,0 +1,10 @@
##### create translation templates ##############
tde_l10n_auto_add_subdirectories( )
tde_l10n_create_template(
CATALOG "desktop_files/tde-style-ia-ora-desktops"
SOURCES_DESKTOP
widget/ia_ora.themerc
twin/iaora.desktop
)

@ -1,2 +1,3 @@
add_subdirectory( widget )
add_subdirectory( twin )
tde_conditional_add_subdirectory( BUILD_GTK_ENGINE gtk )

@ -1 +0,0 @@
SUBDIRS=widget twin

@ -0,0 +1,2 @@
add_subdirectory(engine)
add_subdirectory(styles)

@ -0,0 +1,21 @@
include_directories(
${CMAKE_BINARY_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${GTK_INCLUDE_DIRS}
)
link_directories(
${GTK_LIBDIR}
)
tde_add_library(ia_ora SHARED
SOURCES
ia_ora_theme_draw.c
ia_ora_theme_main.c
ia_ora_rc_style.c
LINK ${GTK_LIBRARIES}
DESTINATION ${INSTALL_PATH_GTK_ENGINES}
)

@ -0,0 +1,217 @@
/* Ia Ora theme
* Copyright (C) 2006 Frederic Crozat - Mandriva
* 1999 Olivier Fourdan (fourdan@xfce.org) for XFCE code
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "ia_ora_rc_style.h"
#include "ia_ora_style.h"
static void ia_ora_rc_style_init(Ia_OraRcStyle * style);
static void ia_ora_rc_style_class_init(Ia_OraRcStyleClass * klass);
static void ia_ora_rc_style_finalize(GObject * object);
static guint ia_ora_rc_style_parse(GtkRcStyle * rc_style, GtkSettings * settings, GScanner * scanner);
static void ia_ora_rc_style_merge(GtkRcStyle * dest, GtkRcStyle * src);
static GtkStyle *ia_ora_rc_style_create_style(GtkRcStyle * rc_style);
static GtkRcStyleClass *ia_ora_parent_rc_class;
GType ia_ora_type_rc_style = 0;
enum
{
TOKEN_GRADIENT = G_TOKEN_LAST + 1,
TOKEN_CROSS,
TOKEN_BLACK_CHECK,
TOKEN_TRUE,
TOKEN_FALSE,
};
static struct
{
const gchar *name;
guint token;
}
ia_ora_rc_symbols[] =
{
{ "enable_gradient", TOKEN_GRADIENT },
{ "use_cross", TOKEN_CROSS},
{ "black_check", TOKEN_BLACK_CHECK},
{ "TRUE", TOKEN_TRUE},
{ "FALSE", TOKEN_FALSE},
};
void ia_ora_rc_style_register_type(GTypeModule * module)
{
static const GTypeInfo object_info = {
sizeof(Ia_OraRcStyleClass),
(GBaseInitFunc) NULL,
(GBaseFinalizeFunc) NULL,
(GClassInitFunc) ia_ora_rc_style_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof(Ia_OraRcStyle),
0, /* n_preallocs */
(GInstanceInitFunc) ia_ora_rc_style_init,
NULL
};
ia_ora_type_rc_style = g_type_module_register_type(module,
GTK_TYPE_RC_STYLE,
"Ia_OraRcStyle",
&object_info, 0);
}
static void ia_ora_rc_style_init(Ia_OraRcStyle * ia_ora_rc_style)
{
ia_ora_rc_style->enable_gradient = TRUE;
ia_ora_rc_style->use_cross = FALSE;
ia_ora_rc_style->black_check = FALSE;
}
static void ia_ora_rc_style_class_init(Ia_OraRcStyleClass * klass)
{
GtkRcStyleClass *rc_style_class = GTK_RC_STYLE_CLASS(klass);
GObjectClass *object_class = G_OBJECT_CLASS(klass);
ia_ora_parent_rc_class = g_type_class_peek_parent(klass);
rc_style_class->parse = ia_ora_rc_style_parse;
rc_style_class->merge = ia_ora_rc_style_merge;
rc_style_class->create_style = ia_ora_rc_style_create_style;
}
static guint ia_ora_parse_boolean(GScanner * scanner, GTokenType wanted_token, guint * retval)
{
guint token;
token = g_scanner_get_next_token(scanner);
if(token != wanted_token)
return wanted_token;
token = g_scanner_get_next_token(scanner);
if(token != G_TOKEN_EQUAL_SIGN)
return G_TOKEN_EQUAL_SIGN;
token = g_scanner_get_next_token(scanner);
if(token == TOKEN_TRUE)
*retval = TRUE;
else if(token == TOKEN_FALSE)
*retval = FALSE;
else
return TOKEN_TRUE;
return G_TOKEN_NONE;
}
static guint ia_ora_rc_style_parse(GtkRcStyle * rc_style, GtkSettings * settings, GScanner * scanner)
{
static GQuark scope_id = 0;
Ia_OraRcStyle *ia_ora_rc_style = IA_ORA_RC_STYLE(rc_style);
guint old_scope;
guint token;
guint i;
/* Set up a new scope in this scanner. */
if(!scope_id)
scope_id = g_quark_from_string("ia_ora_theme_engine");
/* If we bail out due to errors, we *don't* reset the scope, so the
* error messaging code can make sense of our tokens.
*/
old_scope = g_scanner_set_scope(scanner, scope_id);
/* Now check if we already added our symbols to this scope
* (in some previous call to clearlooks_rc_style_parse for the
* same scanner.
*/
if(!g_scanner_lookup_symbol(scanner, ia_ora_rc_symbols[0].name)) {
for(i = 0; i < G_N_ELEMENTS (ia_ora_rc_symbols); i++)
{
g_scanner_scope_add_symbol(scanner, scope_id, ia_ora_rc_symbols[i].name,
GINT_TO_POINTER(ia_ora_rc_symbols[i].token));
}
}
/* We're ready to go, now parse the top level */
token = g_scanner_peek_next_token(scanner);
while(token != G_TOKEN_RIGHT_CURLY)
{
switch (token)
{
case TOKEN_GRADIENT:
token = ia_ora_parse_boolean(scanner, TOKEN_GRADIENT, &ia_ora_rc_style->enable_gradient);
break;
case TOKEN_CROSS:
token = ia_ora_parse_boolean(scanner, TOKEN_CROSS, &ia_ora_rc_style->use_cross);
break;
case TOKEN_BLACK_CHECK:
token = ia_ora_parse_boolean(scanner, TOKEN_BLACK_CHECK, &ia_ora_rc_style->black_check);
break;
default:
g_scanner_get_next_token(scanner);
token = G_TOKEN_RIGHT_CURLY;
break;
}
if(token != G_TOKEN_NONE)
return token;
token = g_scanner_peek_next_token(scanner);
}
g_scanner_get_next_token(scanner);
g_scanner_set_scope(scanner, old_scope);
return G_TOKEN_NONE;
}
static void ia_ora_rc_style_merge(GtkRcStyle * dest, GtkRcStyle * src)
{
Ia_OraRcStyle *dest_w, *src_w;
ia_ora_parent_rc_class->merge (dest, src);
if (!IA_ORA_IS_RC_STYLE (src))
return;
src_w = IA_ORA_RC_STYLE (src);
dest_w = IA_ORA_RC_STYLE (dest);
dest_w->enable_gradient = src_w->enable_gradient;
dest_w->use_cross = src_w->use_cross;
dest_w->black_check= src_w->black_check;
}
/* Create an empty style suitable to this RC style
*/
static GtkStyle *ia_ora_rc_style_create_style(GtkRcStyle * rc_style)
{
return GTK_STYLE(g_object_new(IA_ORA_TYPE_STYLE, NULL));
}

@ -0,0 +1,51 @@
/* Ia Ora
* Copyright (C) 2006 Frederic Crozat - Mandriva
* 1999 Olivier Fourdan (fourdan@xfce.org) for XFCE code
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gtk/gtkrc.h>
typedef struct _Ia_OraRcStyle Ia_OraRcStyle;
typedef struct _Ia_OraRcStyleClass Ia_OraRcStyleClass;
__attribute__((__visibility__("internal"))) extern GType ia_ora_type_rc_style;
#define IA_ORA_TYPE_RC_STYLE ia_ora_type_rc_style
#define IA_ORA_RC_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyle))
#define IA_ORA_RC_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyleClass))
#define IA_ORA_IS_RC_STYLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), IA_ORA_TYPE_RC_STYLE))
#define IA_ORA_IS_RC_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), IA_ORA_TYPE_RC_STYLE))
#define IA_ORA_RC_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), IA_ORA_TYPE_RC_STYLE, Ia_OraRcStyleClass))
struct _Ia_OraRcStyle
{
GtkRcStyle parent_instance;
gboolean enable_gradient;
gboolean use_cross;
gboolean black_check;
};
struct _Ia_OraRcStyleClass
{
GtkRcStyleClass parent_class;
};
__attribute__((__visibility__("internal"))) void ia_ora_rc_style_register_type(GTypeModule * module);

@ -0,0 +1,59 @@
/* Ia Ora
* Copyright (C) 2003 Frederic Crozat - Mandriva
* 1999 Olivier Fourdan (fourdan@xfce.org) for XFCE code
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gtk/gtkstyle.h>
typedef struct _Ia_OraStyle Ia_OraStyle;
typedef struct _Ia_OraStyleClass Ia_OraStyleClass;
__attribute__((__visibility__("internal"))) extern GType ia_ora_type_style;
#define IA_ORA_TYPE_STYLE ia_ora_type_style
#define IA_ORA_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), IA_ORA_TYPE_STYLE, Ia_OraStyle))
#define IA_ORA_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), IA_ORA_TYPE_STYLE, Ia_OraStyleClass))
#define IA_ORA_IS_STYLE(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), IA_ORA_TYPE_STYLE))
#define IA_ORA_IS_STYLE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), IA_ORA_TYPE_STYLE))
#define IA_ORA_STYLE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), IA_ORA_TYPE_STYLE, Ia_OraStyleClass))
#define N_BLUE_COLORS 5
#define N_GRAY_COLORS 7
struct _Ia_OraStyle
{
GtkStyle parent_instance;
GdkColor gray[N_GRAY_COLORS]; /* from light to dark */
GdkColor blue[N_BLUE_COLORS]; /* from light to dark */
GdkColor check_color;
GdkGC *gray_gc[N_GRAY_COLORS]; /* from light to dark */
GdkGC *blue_gc[N_BLUE_COLORS]; /* from light to dark */
GdkGC *check_gc;
GdkPixmap *radio_pixmap_circle[5];
GdkBitmap *radio_pixmap_mask; /* All masks are the same */
};
struct _Ia_OraStyleClass
{
GtkStyleClass parent_class;
};
__attribute__((__visibility__("internal"))) void ia_ora_style_register_type(GTypeModule * module);

File diff suppressed because it is too large Load Diff

@ -0,0 +1,54 @@
/* Ia Ora theme
* Copyright (C) 2006 Frederic Crozat - Mandriva
* 1999 Olivier Fourdan (fourdan@xfce.org) for XFCE code
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gmodule.h>
#include <gtk/gtk.h>
#include "ia_ora_rc_style.h"
#include "ia_ora_style.h"
G_MODULE_EXPORT void theme_init(GTypeModule * module)
{
ia_ora_rc_style_register_type(module);
ia_ora_style_register_type(module);
}
G_MODULE_EXPORT void theme_exit(void)
{
}
G_MODULE_EXPORT GtkRcStyle *theme_create_rc_style(void)
{
return GTK_RC_STYLE(g_object_new(IA_ORA_TYPE_RC_STYLE, NULL));
}
/* The following function will be called by GTK+ when the module
* is loaded and checks to see if we are compatible with the
* version of GTK+ that loads us.
*/
/*
G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module);
const gchar*
g_module_check_init (GModule *module)
{
return gtk_check_version (GTK_MAJOR_VERSION,
GTK_MINOR_VERSION,
GTK_MICRO_VERSION - GTK_INTERFACE_AGE);
}
*/

@ -0,0 +1,6 @@
foreach( THEME orange blue gray arctic smooth night steel )
install(
FILES "${THEME}/gtkrc"
DESTINATION "${INSTALL_PATH_GTK_THEMES}/Ia Ora ${THEME}/gtk-2.0"
)
endforeach()

@ -0,0 +1,169 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#8EC7FF\nselected_fg_color:#000\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# arctic
color["blue0"]= mix(0.1, @selected_bg_color, "#F8F8F8") # "#EFF7FF"
color["blue1"]= mix(0.4, @selected_bg_color, "#E8ECF8") # "#C7DFFF"
color["blue2"]= @selected_bg_color # "#8EC7FF"
color["blue3"]= mix(0.5, @selected_bg_color, "#70B0F8") # "#79BEFF"
color["blue4"]= mix(0.5, @selected_bg_color, "#50A0F8") # "#69B6FF"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {
black_check=TRUE
}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,166 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#4965AE\nselected_fg_color:#fff\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# blue
color["blue0"]= mix(0.3, @selected_bg_color, "#C8D8F8") # "#A6B6E7"
color["blue1"]= mix(0.5, @selected_bg_color, "#C8E0E8") #"#8EA2CF"
color["blue2"]= @selected_bg_color # "#4965AE"
color["blue3"]= mix(0.5, @selected_bg_color, "#405595") #"#415DA6"
color["blue4"]= mix(0.5, @selected_bg_color, "#012888") #"#21459C"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,169 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#C7D3DF\nselected_fg_color:#000\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# pwp+
color["blue0"]= mix(0.3, @selected_bg_color, "#E8ECF0") # gray1 #DFE7EF
color["blue1"]= mix(0.5, @selected_bg_color, "#C8D8D0") # gray2 #CFD7DF
color["blue2"]= @selected_bg_color # gray3 #C7D3DF
color["blue3"]= mix(0.5, @selected_bg_color, "#8090A0") # gray5 #A6B2C7
color["blue4"]= mix(0.5, @selected_bg_color, "#405060") # gray6 #8692A6
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {
black_check=TRUE
}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,166 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#5D658E\nselected_fg_color:#fff\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# night
color["blue0"]= mix(0.1, @selected_bg_color, "#B5C2F4") # "#ACB9EA"
color["blue1"]= mix(0.5, @selected_bg_color, "#A3B5F3") #"#808DC6"
color["blue2"]= @selected_bg_color # "#5D658E"
color["blue3"]= mix(0.5, @selected_bg_color, "#1E2440") #"#3D4467"
color["blue4"]= mix(0.3, @selected_bg_color, "#101834") #"#272F4F"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,169 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#F7B610\nselected_fg_color:#000\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# orange
color["blue0"]= mix(0.3, @selected_bg_color, "#FFF018") # "#FFDF10"
color["blue1"]= mix(0.5, @selected_bg_color, "#FFE018") #"#FFCB10"
color["blue2"]= @selected_bg_color # "#F7B610"
color["blue3"]= mix(0.5, @selected_bg_color, "#FF9008") # "#FFA208"
color["blue4"]= mix(0.1, @selected_bg_color, "#EF9000") # "#F79600"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {
black_check=TRUE
}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,168 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#7BAAE7\nselected_fg_color:#fff\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# smooth
color["blue0"] = mix(0.3, @selected_bg_color, "#E8F8FF") # "#cee3ff"
color["blue1"] = mix(0.3, @selected_bg_color, "#C0DAFF") # "#adcfff"
color["blue2"] = @selected_bg_color # "#7BAAE7"
color["blue3"] = mix(0.5, @selected_bg_color, "#396AC5" ) # "#5A8AD6"
color["blue4"] = mix(0.5, @selected_bg_color, "#0C50a0") # "#427dc6"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {
black_check=TRUE
}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,167 @@
# Set GtkSettings color scheme property.
# This can be overriden (via an xsetting) with eg. the gnome-appearance-properties.
gtk_color_scheme = "fg_color:#000\nbg_color:#EFF3F7\nbase_color:#fff\ntext_color:#000\nselected_bg_color:#158CCD\nselected_fg_color:#fff\ntooltip_fg_color:#000\ntooltip_bg_color:#FFFF94"
gtk-auto-mnemonics = 1
style "ia_ora-default"
{
color["gray0"]= @bg_color # "#EFF3F7"
color["gray1"]= mix(0.5,@bg_color, "#C8D8D8") #"#DFE7EF"
color["gray2"]= mix(0.5,@bg_color, "#A8B8B8") #"#CFD7DF"
color["gray3"]= mix(0.5,@bg_color, "#90B0B8") # "#C7D3DF"
color["gray4"]= mix(0.5,@bg_color, "#709098") # "#B6C3CF"
color["gray5"]= mix(0.5,@bg_color, "#507088") # "#A6B2C7"
color["gray6"]= mix(0.5,@bg_color, "#183050") #"#8692A6"
# steel
color["blue0"]= mix(0.3, @selected_bg_color, "#DEFCEC") # "#A2DBE3"
color["blue1"]= mix(0.4, @selected_bg_color, "#55DFD0") # "#3BBECF"
color["blue2"]= @selected_bg_color # "#158CCD"
color["blue3"]= mix(0.1, @selected_bg_color, "#046B9E") # "#056EA3"
color["blue4"]= mix(0.1, @selected_bg_color, "#092A46") # "#0A3453"
GtkButton::default-border = {1, 1, 1, 1}
GtkWidget::interior-focus = 1
GtkButton::default-spacing = 6
GtkCheckButton::indicator-size = 13
GtkPaned::handle-size = 6
GtkRange::trough-border = 0
GtkRange::slider-width = 8
GtkRange::stepper-size = 15
GtkRange::stepper-spacing = 0
GtkRange::trough-side-details = 1
GtkScrollbar::min-slider-length = 20
GtkScrollbar::slider-width = 15
GtkScrollbar::trough-side-details = 0
GtkTreeView::even-row-color = @base_color
GtkTreeView::odd-row-color = @bg_color
# Glow the tasklist by changing the color, instead of overlaying it with a rectangle
WnckTasklist ::fade-overlay-rect = 0
fg[NORMAL] = @fg_color
fg[ACTIVE] = @fg_color
fg[INSENSITIVE] = @gray4
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @selected_fg_color
bg[NORMAL] = @bg_color
bg[ACTIVE] = @gray1
bg[INSENSITIVE] = @gray2
bg[PRELIGHT] = @gray1
bg[SELECTED] = @selected_bg_color
base[NORMAL] = @base_color
base[ACTIVE] = @blue1
base[INSENSITIVE] = @bg_color
base[PRELIGHT] = @base_color
base[SELECTED] = @selected_bg_color
text[NORMAL] = @text_color
text[ACTIVE] = @selected_fg_color
text[INSENSITIVE] = @gray4
text[PRELIGHT] = @fg_color
text[SELECTED] = @selected_fg_color
engine "ia_ora" {
}
}
style "ia_ora-button" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
}
style "ia_ora-thin" = "ia_ora-default"
{
xthickness = 1
ythickness = 1
}
style "ia_ora-treeview-header" = "ia_ora-default"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-menu" = "ia_ora-default"
{
fg[PRELIGHT]=@selected_fg_color
text[PRELIGHT]=@selected_fg_color
}
style "ia_ora-bar" = "ia_ora-menu"
{
xthickness = 0
ythickness = 0
}
style "ia_ora-tasklist" = "ia_ora-default"
{
xthickness = 2
ythickness = 2
GtkWidget::focus-line-width = 0
GtkWidget::focus-padding = 0
}
style "ia_ora-comboboxtext" = "ia_ora-default"
{
text[PRELIGHT] = @fg_color
# Work around for http://bugzilla.gnome.org/show_bug.cgi?id=382646
text[NORMAL] = @fg_color
}
style "ia_ora-tooltips" = "ia_ora-default"
{
bg[NORMAL] = @tooltip_bg_color
fg[NORMAL] = @tooltip_fg_color
bg[SELECTED] = darker(@tooltip_bg_color)
GtkWidget::new-tooltip-style = 1
xthickness = 8
ythickness = 4
}
style "ia_ora-tree" = "ia_ora-default"
{
bg[ACTIVE] = @blue1
}
style "ia_ora-menubar" = "ia_ora-default"
{
GtkWidget::window-dragging = 1
}
class "GtkWidget" style "ia_ora-default"
class "ECanvas" style "ia_ora-thin"
class "GtkButton" style "ia_ora-button"
class "EComboButton" style "ia_ora-thin"
widget_class "*Item.GtkAccelLabel" style "ia_ora-menu"
widget_class "*GtkComboBox.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*BaconCdSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*NautilusBurnDriveSelection.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*Gimp*Combo*.GtkCellView" style "ia_ora-comboboxtext"
widget_class "*.EShortcutsView.GtkButton" style "ia_ora-thin"
widget_class "*.GtkHTMLEmbedded.*GtkButton" style "ia_ora-thin"
# Treeview header
widget_class "*.<GtkTreeView>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCList>.<GtkButton>" style "ia_ora-treeview-header"
widget_class "*.<GtkCTree>.<GtkButton>" style "ia_ora-treeview-header"
class "GtkScrolledWindow" style "ia_ora-thin"
class "GtkProgressBar" style "ia_ora-bar"
widget_class "*<GtkMenuBar>*" style "ia_ora-menubar"
widget_class "*MenuItem*" style "ia_ora-menu"
widget_class "*.PanelApplet.*" style "ia_ora-tasklist"
widget "*.tasklist-button" style "ia_ora-tasklist"
class "GtkNotebook" style "ia_ora-thin"
widget "gtk-tooltip*" style "ia_ora-tooltips"
widget_class "*GtkPathBar*" style "ia_ora-thin"
widget_class "*Tree*" style "ia_ora-tree"
widget_class "*ETable*" style "ia_ora-tree"

@ -0,0 +1,7 @@
##### create translation templates ##############
tde_l10n_create_template(
CATALOG "messages/twin_iaora/"
SOURCES .
X-POT ${CMAKE_SOURCE_DIR}/../../../core/tde-i18n/template/messages/tdebase/twin_clients.pot
)

@ -16,9 +16,9 @@ link_directories(
)
##### twin3_iaora (kpart)
##### twin_iaora (kpart)
tde_add_kpart( twin3_iaora AUTOMOC
tde_add_kpart( twin_iaora AUTOMOC
SOURCES
iaora.cpp

@ -1,19 +0,0 @@
AUTOMAKE_OPTIONS = foreign
SUBDIRS = config
KDE_CXXFLAGS = -DQT_PLUGIN
INCLUDES = -I$(srcdir)/../../lib $(all_includes)
twindir = $(kde_datadir)/twin/
twin_DATA = iaora.desktop
kde_module_LTLIBRARIES = twin3_iaora.la
twin3_iaora_la_SOURCES = iaora.cpp iaoraclient.cpp iaorabutton.cpp misc.cpp
twin3_iaora_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
twin3_iaora_la_LIBADD = $(LIB_TDEUI) -ltdecorations $(LIB_TQT) $(LIB_TDECORE) -ltdefx
twin3_iaora_la_METASOURCES = AUTO
DISTCLEANFILES = $(twin3_iaora_la_METASOURCES)

@ -1,14 +0,0 @@
INCLUDES = $(all_includes)
kde_module_LTLIBRARIES = twin_iaora_config.la
twin_iaora_config_la_SOURCES = config.cpp configdialog.ui
twin_iaora_config_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
twin_iaora_config_la_LIBADD = $(LIB_TDEUI) $(LIB_TQT) $(LIB_TDECORE)
METASOURCES = AUTO
noinst_HEADERS = config.h
DISTCLEANFILES = $(METASOURCES)
lnkdir = $(kde_datadir)/twin

@ -42,6 +42,7 @@ IaOraConfig::IaOraConfig(TDEConfig* config, TQWidget* parent)
// create the configuration object
m_config = new TDEConfig("twiniaorarc");
TDEGlobal::locale()->insertCatalogue("twin_clients");
TDEGlobal::locale()->insertCatalogue("twin_iaora");
// create and show the configuration dialog
m_dialog = new ConfigDialog(parent);
@ -51,10 +52,10 @@ IaOraConfig::IaOraConfig(TDEConfig* config, TQWidget* parent)
load(config);
// setup the connections
connect(m_dialog->menuClose, SIGNAL(toggled(bool)),
this, SIGNAL(changed()));
connect(m_dialog->titleShadow, SIGNAL(toggled(bool)),
this, SIGNAL(changed()));
connect(m_dialog->menuClose, TQ_SIGNAL(toggled(bool)),
this, TQ_SIGNAL(changed()));
connect(m_dialog->titleShadow, TQ_SIGNAL(toggled(bool)),
this, TQ_SIGNAL(changed()));
}
IaOraConfig::~IaOraConfig()

@ -34,7 +34,7 @@ class ConfigDialog;
class IaOraConfig : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
IaOraConfig(TDEConfig* config, TQWidget* parent);
~IaOraConfig();

@ -27,6 +27,8 @@
#include <tqimage.h>
#include <tqapplication.h>
#include <tdeconfig.h>
#include <tdeglobal.h>
#include <tdelocale.h>
#include <kpixmap.h>
#include <kpixmapeffect.h>
@ -41,6 +43,9 @@ namespace KWinIaOra
IaOraHandler::IaOraHandler()
{
TDEGlobal::locale()->insertCatalogue("twin_clients");
TDEGlobal::locale()->insertCatalogue("twin_iaora");
memset(m_pixmaps, 0, sizeof(TQPixmap*)*NumPixmaps*2*2); // set elements to 0
memset(m_bitmaps, 0, sizeof(TQBitmap*)*NumButtonIcons*2);

@ -1,5 +1,4 @@
[Desktop Entry]
Name=Ia Ora
Encoding=UTF-8
Icon=
Name=Ia ora
X-TDE-Library=twin3_iaora
X-TDE-Library=twin_iaora

@ -77,7 +77,7 @@ enum ButtonIcon {
class IaOraHandler: public TQObject, public KDecorationFactory
{
Q_OBJECT
TQ_OBJECT
public:
IaOraHandler();
~IaOraHandler();

@ -37,7 +37,7 @@ class IaOraClient;
class IaOraButton : public KCommonDecorationButton
{
Q_OBJECT
TQ_OBJECT
public:
IaOraButton(ButtonType type, IaOraClient *parent, const char *name);
~IaOraButton();

@ -1,26 +0,0 @@
KDE_PLUGIN = -avoid-version -module -no-undefined $(KDE_NO_UNDEFINED) $(KDE_RPATH) $(KDE_MT_LDFLAGS)
AM_CPPFLAGS = -DQT_PLUGIN
INCLUDES = $(all_includes)
noinst_HEADERS = ia_ora.h bitmaps.h
kde_style_LTLIBRARIES = ia_ora.la
ia_ora_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
ia_ora_la_LIBADD = -ltdefx $(LIB_TDECORE) $(LIB_TQT)
ia_ora_la_SOURCES = ia_ora.cpp
ia_ora_la_METASOURCES = AUTO
# todo fix me install themerc file
ia_ora.lo: ia_ora.h ia_ora.moc
ia_ora.moc : ia_ora.h
$(MOC) $(srcdir)/ia_ora.h -o ia_ora.moc
BUILT_SOURCES = ia_ora.moc
CLEANFILES = $(BUILT_SOURCES)
ia_oradata_DATA = ia_ora.themerc
ia_oradatadir = $(kde_datadir)/tdestyle/themes
EXTRA_DIST = ia_ora.cpp ia_ora.h $(ia_oradata_DATA)

@ -80,7 +80,7 @@ public:
}
};
Q_EXPORT_PLUGIN( ThemeMdvStylePlugin )
TQ_EXPORT_PLUGIN( ThemeMdvStylePlugin )
// ---------------------------------------------------
@ -353,7 +353,7 @@ void MandrivaStyle::updateHoverControl(const TQPoint &pos, const TQStyleControlE
void MandrivaStyle::applicationPolish(const TQStyleControlElementData &ceData, ControlElementFlags, void *ptr)
{
if (ceData.widgetObjectTypes.contains(TQAPPLICATION_OBJECT_NAME_STRING)) {
if (ceData.widgetObjectTypes.contains("TQApplication")) {
TQApplication *app = reinterpret_cast<TQApplication*>(ptr);
if (!qstrcmp(app->argv()[0], "kicker")) {
kickerMode = true;
@ -363,7 +363,7 @@ void MandrivaStyle::applicationPolish(const TQStyleControlElementData &ceData, C
void MandrivaStyle::polish(const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, void *ptr)
{
if (ceData.widgetObjectTypes.contains(TQWIDGET_OBJECT_NAME_STRING)) {
if (ceData.widgetObjectTypes.contains("TQWidget")) {
TQWidget *widget = reinterpret_cast<TQWidget*>(ptr);
// Put in order of highest occurance to maximize hit rate
@ -418,7 +418,7 @@ void MandrivaStyle::polish(const TQStyleControlElementData &ceData, ControlEleme
void MandrivaStyle::unPolish(const TQStyleControlElementData &ceData, ControlElementFlags elementFlags, void *ptr)
{
if (ceData.widgetObjectTypes.contains(TQWIDGET_OBJECT_NAME_STRING)) {
if (ceData.widgetObjectTypes.contains("TQWidget")) {
TQWidget *widget = reinterpret_cast<TQWidget*>(ptr);
TQFont f = TQApplication::font();
@ -477,7 +477,7 @@ void MandrivaStyle::renderMenuBlendPixmap( KPixmap& pix, const TQColorGroup &cg,
{
TQColor col = cg.background();
//FIXME !!!!!!!!!!!!!!!
#ifdef Q_WS_X11 // Only draw menu gradients on TrueColor, X11 visuals
#ifdef TQ_WS_X11 // Only draw menu gradients on TrueColor, X11 visuals
if ( TQPaintDevice::x11AppDepth() >= 24 )
KPixmapEffect::gradient( pix, col.light(120), col.dark(115),
KPixmapEffect::HorizontalGradient );
@ -3030,7 +3030,7 @@ bool MandrivaStyle::objectEventHandler( const TQStyleControlElementData &ceData,
return true;
}
if (ceData.widgetObjectTypes.contains(TQOBJECT_OBJECT_NAME_STRING)) {
if (ceData.widgetObjectTypes.contains("TQObject")) {
TQObject* obj = reinterpret_cast<TQObject*>(source);
TQToolBar* toolbar;
@ -3457,5 +3457,3 @@ bool MandrivaStyle::isFormWidget(const TQWidget* widget) const
return true;
}
// vim: ts=4 et sw=4

@ -45,7 +45,7 @@ class TQPopupMenu;
class MandrivaStyle : public TDEStyle
{
Q_OBJECT
TQ_OBJECT
public:
MandrivaStyle();
@ -328,5 +328,3 @@ private:
};
#endif
// vim: ts=4 et sw=4

@ -1,6 +1,6 @@
[Misc]
Name=Ia Ora
Comment=Mandriva Widget Style
[KDE]
WidgetStyle=ia_ora

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# Andrei Stepanov <adem4ik@gmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 13:08+0200\n"
"PO-Revision-Date: 2024-04-20 04:44+0000\n"
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tde-style-ia-ora-desktop-files/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.17\n"
#. Name
#: widget/ia_ora.themerc:2 twin/iaora.desktop:2
msgid "Ia Ora"
msgstr "Ia Ora"
#. Comment
#: widget/ia_ora.themerc:3
msgid "Mandriva Widget Style"
msgstr "Стиль виджетов Mandriva"

@ -0,0 +1,27 @@
# SOME DESCRIPTIVE TITLE.
# This file is put in the public domain.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-12 13:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Name
#: widget/ia_ora.themerc:2 twin/iaora.desktop:2
msgid "Ia Ora"
msgstr ""
#. Comment
#: widget/ia_ora.themerc:3
msgid "Mandriva Widget Style"
msgstr ""

@ -0,0 +1,35 @@
# SOME DESCRIPTIVE TITLE.
# Andrei Stepanov <adem4ik@gmail.com>, 2024.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-07-12 12:47+0200\n"
"PO-Revision-Date: 2024-04-21 17:50+0000\n"
"Last-Translator: Andrei Stepanov <adem4ik@gmail.com>\n"
"Language-Team: Russian <https://mirror.git.trinitydesktop.org/weblate/"
"projects/applications/tde-style-ia-ora-twin/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.17\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr "Андрей Степанов"
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr "adem4ik@gmail.com"
#: iaoraclient.cpp:58
msgid "Ia Ora"
msgstr "Ia Ora"

@ -0,0 +1,32 @@
# SOME DESCRIPTIVE TITLE.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2021-07-12 12:47+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#. Instead of a literal translation, add your name to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: NAME OF TRANSLATORS\n"
"Your names"
msgstr ""
#. Instead of a literal translation, add your email to the end of the list (separated by a comma).
#, ignore-inconsistent
msgid ""
"_: EMAIL OF TRANSLATORS\n"
"Your emails"
msgstr ""
#: iaoraclient.cpp:58
msgid "Ia Ora"
msgstr ""
Loading…
Cancel
Save