summaryrefslogtreecommitdiff
path: root/UConfig.pas
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@tbzatek.englab.brq.redhat.com>2008-11-11 13:53:37 +0100
committerTomas Bzatek <tbzatek@tbzatek.englab.brq.redhat.com>2008-11-11 13:53:37 +0100
commitb624be9dfcbc32874d0db82d3ee4c26b65de7c49 (patch)
tree590b4172f62915b5256329319ccee0144372d7b8 /UConfig.pas
parente46108835fb7d7aa4461f6d3d5002456499df804 (diff)
downloadtuxcmd-b624be9dfcbc32874d0db82d3ee4c26b65de7c49.tar.xz
Parse GtkRc styles file in memoryv0.6.56
Diffstat (limited to 'UConfig.pas')
-rw-r--r--UConfig.pas11
1 files changed, 8 insertions, 3 deletions
diff --git a/UConfig.pas b/UConfig.pas
index 40af4ed..980c387 100644
--- a/UConfig.pas
+++ b/UConfig.pas
@@ -25,8 +25,8 @@ uses Classes, ULocale;
resourcestring
ConstAppTitle = 'Tux Commander';
- ConstAboutVersion = '0.6.55-dev';
- ConstAboutBuildDate = '2008-11-09';
+ ConstAboutVersion = '0.6.56-dev';
+ ConstAboutBuildDate = '2008-11-11';
{$IFDEF FPC}
{$INCLUDE fpcver.inc}
@@ -68,12 +68,17 @@ const ConfDefaultNormalItemFGColor = '#000000';
ConfTerminalApps: array[1..4] of string = (ConstTerminalCommand_xterm, ConstTerminalCommand_rxvt, ConstTerminalCommand_rxvt2, ConstTerminalCommand_gnometerminal);
ConfTerminalAppsWParam: array[1..4] of string = ('xterm', 'rxvt', 'rxvt', 'gnome-terminal');
+
const SMOOTH_SCROLL_STEPS = 5;
SMOOTH_SCROLL_DURATION = 45;
SMOOTH_SCROLL_STEPS_PAGE = 10;
SMOOTH_SCROLL_DURATION_PAGE = 120;
-
+const tuxcmd_rc_file = 'style "treeview-style" {'#10 +
+ ' GtkTreeView::horizontal_separator = 0'#10 +
+ ' GtkTreeView::vertical_separator = 0'#10 +
+ '}'#10 +
+ 'class "GtkTreeView" style "treeview-style"';
var ConfPanelSep, ConfRowHeight, ConfRowHeightReal, ConfNumHistoryItems,