~ubuntu-branches/ubuntu/oneiric/kiten/oneiric-proposed

« back to all changes in this revision

Viewing changes to lib/DictEdict/linearedictfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2011-07-10 11:23:47 UTC
  • Revision ID: james.westby@ubuntu.com-20110710112347-ykfhtvam3kgssspo
Tags: upstream-4.6.90+repack
ImportĀ upstreamĀ versionĀ 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * This file is part of Kiten, a KDE Japanese Reference Tool                 *
 
3
 * Copyright (C) 2001 Jason Katz-Brown <jason@katzbrown.com>                 *
 
4
 * Copyright (C) 2008 Joseph Kerian <jkerian@gmail.com>                      *
 
5
 *                                                                           *
 
6
 * This library is free software; you can redistribute it and/or             *
 
7
 * modify it under the terms of the GNU Library General Public               *
 
8
 * License as published by the Free Software Foundation; either              *
 
9
 * version 2 of the License, or (at your option) any later version.          *
 
10
 *                                                                           *
 
11
 * This library is distributed in the hope that it will be useful,           *
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
 
14
 * Library General Public License for more details.                          *
 
15
 *                                                                           *
 
16
 * You should have received a copy of the GNU Library General Public License *
 
17
 * along with this library; see the file COPYING.LIB.  If not, write to      *
 
18
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,      *
 
19
 * Boston, MA 02110-1301, USA.                                               *
 
20
 *****************************************************************************/
 
21
 
 
22
#ifndef KITEN_LINEAREDICTFILE_H
 
23
#define KITEN_LINEAREDICTFILE_H
 
24
 
 
25
#include <QString>
 
26
#include <QStringList>
 
27
#include <QVector>
 
28
 
 
29
/**
 
30
 * A class for managing the EDICT formatted dictionaries with their
 
31
 * dictionary files. This class is not really designed for subclassing.
 
32
 */
 
33
class /* NO_EXPORT */ LinearEdictFile
 
34
{
 
35
  public:
 
36
    /**
 
37
     * Create and initialize this object
 
38
     */
 
39
    LinearEdictFile();
 
40
    ~LinearEdictFile();
 
41
 
 
42
    /**
 
43
     * Load a file, generate the index if it doesn't already exist
 
44
     */
 
45
    bool loadFile( const QString &filename );
 
46
 
 
47
    /**
 
48
     * Test if the file was properly loaded
 
49
     */
 
50
    bool valid() const;
 
51
 
 
52
    /**
 
53
     * Get everything that looks remotely like a given search string
 
54
     */
 
55
    QVector<QString> findMatches( const QString &searchString ) const;
 
56
 
 
57
  private:
 
58
    QStringList m_edict;
 
59
    bool        m_properlyLoaded;
 
60
};
 
61
 
 
62
#endif