notepad_pages.h
Go to the documentation of this file.00001 #ifndef __NOTEPAD_PAGES_H__
00002 #define __NOTEPAD_PAGES_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include <glib.h>
00033 #include <gtk/gtk.h>
00034 #include <gdk/gdk.h>
00035
00036 #include "notepad_utils.h"
00037 #include "notepad_point.h"
00038 #include "notepad_doc.h"
00039 #include "notepad_commandqueue.h"
00040 #include <liberscribble/scb.h>
00041
00042
00043 namespace notepad
00044 {
00045
00046 #define NPAGES 11 // odd, currentpage +5 and -5
00047 #define NOTFOUND (-1)
00048
00049
00050 struct RenderPageCtx
00051 {
00052 int pageno;
00053 bool isCurrent;
00054 };
00055
00056
00057 class CNotepadPages
00058 {
00059 private:
00060
00061 typedef struct
00062 {
00063 GdkImage* image;
00064 gint pageno;
00065 gboolean dirty;
00066 } NpPage;
00067
00068
00069 public:
00070
00071 CNotepadPages();
00072 ~CNotepadPages();
00073
00074 void init(CNotepadDoc* aDoc, GCtx* aCtx, int pageno, GdkVisual* visual = 0);
00075 void stop();
00076
00077 private:
00078 CNotepadPages(const CNotepadPages&);
00079 CNotepadPages& operator=(const CNotepadPages&);
00080
00081 public:
00082
00083 void insert_page(const int pageno);
00084 void delete_page(const int pageno);
00085 void clear_page(const int pageno);
00086 void mark_dirty(const int pageno);
00087 void mark_all_dirty();
00088 GdkImage* get_page(const int pageno);
00089
00090 private:
00091
00092 gint find_page(const int pageno);
00093 gint make_room(const int pageno);
00094 gint remove_from_cache(const gint index);
00095 gint remove_page_from_cache(const int pageno);
00096 gint replace_page_at_index(const gint index, const int pageno);
00097 bool stop_flag;
00098
00099 private:
00100
00101 GdkVisual* visual;
00102 NpPage pages[NPAGES];
00103 CNotepadDoc* doc;
00104 GCtx* gctx;
00105 int current_page;
00106
00107
00108 CmdQueue cmd_queue;
00109 CSemaphore drawsem;
00110 CSemaphore pages_rw_sem;
00111
00112
00113 public:
00114 bool execRenderPage(RenderPageCtx* ctx);
00115 };
00116
00117 }
00118
00119 #endif // __NOTEPAD_PAGES_H__