~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to libs/kotext/KoFind.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <QObject>
26
26
 
27
27
class QTextDocument;
28
 
class KoCanvasResourceProvider;
 
28
class KoResourceManager;
29
29
class KActionCollection;
30
30
class KoFindPrivate;
31
31
 
45
45
     * @param provider the resource provider for the canvas, used to signal the text shape.
46
46
     * @param ac the action collection that the find actions can be added to.
47
47
     */
48
 
    KoFind(QWidget *parent, KoCanvasResourceProvider *provider, KActionCollection *ac);
 
48
    KoFind(QWidget *parent, KoResourceManager *provider, KActionCollection *ac);
49
49
    /// destructor
50
50
    ~KoFind();
51
51
 
59
59
     *
60
60
     * @param document The currently document where find was used.
61
61
     */
62
 
    void findDocumentSetNext(QTextDocument * document);
 
62
    void findDocumentSetNext(QTextDocument *document);
63
63
 
64
64
    /**
65
65
     * @brief This signal is send when the current document has reached its beginning
70
70
     *
71
71
     * @param document The currently document where find was used.
72
72
     */
73
 
    void findDocumentSetPrevious(QTextDocument * document);
 
73
    void findDocumentSetPrevious(QTextDocument *document);
74
74
 
75
75
private:
76
76
    KoFindPrivate * const d;