Switch to unified view

a/src/qtgui/guiutils.h b/src/qtgui/guiutils.h
...
...
84
    bool queryReplaceAbstract;
84
    bool queryReplaceAbstract;
85
    bool startWithAdvSearchOpen;
85
    bool startWithAdvSearchOpen;
86
    bool startWithSortToolOpen;
86
    bool startWithSortToolOpen;
87
    bool previewHtml;
87
    bool previewHtml;
88
    bool collapseDuplicates;
88
    bool collapseDuplicates;
89
    // Extra query indexes. This are encoded to base64 before storing
89
    // Extra query indexes. This are stored in the history file, not qt prefs
90
    // to the qt settings file to avoid any bin string/ charset conv issues
91
    list<string> allExtraDbs;
90
    list<string> allExtraDbs;
92
    list<string> activeExtraDbs;
91
    list<string> activeExtraDbs;
93
    // Advanced search subdir restriction: we don't activate the last value
92
    // Advanced search subdir restriction: we don't activate the last value
94
    // but just remember previously entered values
93
    // but just remember previously entered values
95
    QStringList asearchSubdirHist;
94
    QStringList asearchSubdirHist;
...
...
98
    // Make phrase out of search terms and add to search in simple search
97
    // Make phrase out of search terms and add to search in simple search
99
    bool ssearchAutoPhrase;
98
    bool ssearchAutoPhrase;
100
    // Ignored file types in adv search (startup default)
99
    // Ignored file types in adv search (startup default)
101
    QStringList asearchIgnFilTyps;
100
    QStringList asearchIgnFilTyps;
102
    bool        fileTypesByCats;
101
    bool        fileTypesByCats;
102
    // Words that are automatically turned to ext:xx specs in the query
103
    // language entry. 
104
    QString autoSuffs;
105
    bool    autoSuffsEnable;
103
106
104
    // Synthetized abstract length and word context size
107
    // Synthetized abstract length and word context size
105
    int syntAbsLen;
108
    int syntAbsLen;
106
    int syntAbsCtx;
109
    int syntAbsCtx;
107
110