text_controller.h
Go to the documentation of this file.00001
00002
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 #ifndef TEXT_CONTROLLER_H
00028 #define TEXT_CONTROLLER_H
00029
00030 #include "text_tasks.h"
00031 #include "text_model.h"
00032 #include "thread.h"
00033
00034 namespace text
00035 {
00036
00037 class TextModel;
00038 class TextView;
00039
00040 class TextController
00041 {
00042 public:
00043
00044 TextController(TextModel *_model, TextView *_view);
00045 ~TextController();
00046
00047 public:
00048
00049 void start();
00050
00051
00052 void stop();
00053
00054
00055 void render(unsigned int id, unsigned int page_index, void *data, unsigned char* bmp);
00056
00057
00058 void render(unsigned int id, const Position& start_pos, void *data, unsigned char* bmp);
00059
00060
00061 void paginate(const Position& start, bool send_start_notification);
00062
00063
00064
00065 void search(SearchContext* sc);
00066
00067
00068
00069
00070
00071 void pause_pagination();
00072
00073
00074
00075
00076
00077 void restart_pagination();
00078
00079 private:
00080 void on_pagination_aborted(const Position& start);
00081 void on_pagination_finished(unsigned int, unsigned int);
00082 void on_search_aborted(SearchContext* sc);
00083
00084 private:
00085
00086 TextModel *model;
00087
00088
00089 TextView *view;
00090
00091
00092 common::Thread thread;
00093
00094
00095
00096
00097
00098 bool pagination_pending;
00099
00100
00101 bool pagination_paused;
00102
00103
00104 };
00105
00106 };
00107
00108 #endif // TEXT_CONTROLLER_H
00109
00110