annotate common.h @ 42:9a89dedf260a

A couple of more fixes to "weird filenames" bug.
author Jari Korhonen <jtkorhonen@gmail.com>
date Thu, 24 Jun 2010 23:41:21 +0300
parents 42f3cb49373b
children c76782c14371
rev   line source
jtkorhonen@0 1 #ifndef COMMON_H
jtkorhonen@0 2 #define COMMON_H
jtkorhonen@0 3
jtkorhonen@30 4 /****************************************************************************
jtkorhonen@30 5 ** Copyright (C) Jari Korhonen, 2010 (under lgpl)
jtkorhonen@30 6 ****************************************************************************/
jtkorhonen@0 7
jtkorhonen@0 8 #include <QtCore>
jtkorhonen@0 9
jtkorhonen@0 10 #define APPNAME "HgExplorer"
jtkorhonen@42 11 #define APPVERSION "0.7.2"
jtkorhonen@0 12 #define MY_ICON_SIZE 32
jtkorhonen@0 13 #define REPOMENU_TITLE "Repository actions"
jtkorhonen@0 14 #define WORKFOLDERMENU_TITLE "Workfolder actions"
jtkorhonen@0 15 #define EXITOK(x) ((x)==0)
jtkorhonen@0 16 #define CHGSET "changeset: "
jtkorhonen@0 17 #define REQUIRED_CHGSET_DIFF_COUNT 2
jtkorhonen@0 18
jtkorhonen@0 19 #define WORKTAB 0
jtkorhonen@0 20 #define HISTORYTAB 1
jtkorhonen@0 21 #define HEADSTAB 2
jtkorhonen@0 22
jtkorhonen@0 23 #define HGSTAT_M_BIT 1U
jtkorhonen@0 24 #define HGSTAT_A_BIT 2U
jtkorhonen@0 25 #define HGSTAT_R_BIT 4U
jtkorhonen@0 26 #define HGSTAT_D_BIT 8U
jtkorhonen@0 27 #define HGSTAT_U_BIT 16U
jtkorhonen@0 28 #define HGSTAT_C_BIT 32U
jtkorhonen@0 29 #define HGSTAT_I_BIT 64U
jtkorhonen@0 30
jtkorhonen@0 31 #define DEFAULT_HG_STAT_BITS (HGSTAT_M_BIT | HGSTAT_A_BIT | HGSTAT_R_BIT | HGSTAT_D_BIT | HGSTAT_U_BIT)
jtkorhonen@0 32
jtkorhonen@30 33 #define NUM_PATHS_IN_MRU_LIST 5
jtkorhonen@0 34
jtkorhonen@0 35
jtkorhonen@0 36 extern QString getSystem();
jtkorhonen@0 37 extern QString getHgBinaryName();
jtkorhonen@0 38 extern QString getHgDirName();
jtkorhonen@0 39
jtkorhonen@0 40 #endif //COMMON_H
jtkorhonen@0 41
jtkorhonen@0 42