~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to scintilla/CallTip.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
        bool useStyleCallTip;   // if true, STYLE_CALLTIP should be used
28
28
 
29
29
        // Private so CallTip objects can not be copied
30
 
        CallTip(const CallTip &) {}
31
 
        CallTip &operator=(const CallTip &) { return *this; }
 
30
        CallTip(const CallTip &);
 
31
        CallTip &operator=(const CallTip &);
32
32
        void DrawChunk(Surface *surface, int &x, const char *s,
33
33
                int posStart, int posEnd, int ytext, PRectangle rcClient,
34
34
                bool highlight, bool draw);
35
35
        int PaintContents(Surface *surfaceWindow, bool draw);
36
 
        bool IsTabCharacter(char c);
 
36
        bool IsTabCharacter(char c) const;
37
37
        int NextTabPos(int x);
38
38
 
39
39
public:
61
61
 
62
62
        /// Setup the calltip and return a rectangle of the area required.
63
63
        PRectangle CallTipStart(int pos, Point pt, const char *defn,
64
 
                const char *faceName, int size, int codePage_, 
 
64
                const char *faceName, int size, int codePage_,
65
65
                int characterSet, Window &wParent);
66
66
 
67
67
        void CallTipCancel();