statusline.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. // Copyright (C) 2003 Mooffie <mooffie@typo.co.il>
  2. //
  3. // This program is free software; you can redistribute it and/or modify
  4. // it under the terms of the GNU General Public License as published by
  5. // the Free Software Foundation; either version 2 of the License, or
  6. // (at your option) any later version.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
  16. #ifndef BDE_STATUSLINE_H
  17. #define BDE_STATUSLINE_H
  18. #include "editbox.h"
  19. class Editor;
  20. class StatusLine : public Widget, public EditBoxStatusListener {
  21. const EditBox *editbox;
  22. const Editor *bde;
  23. enum region { rgnNone = 0, rgnIndicators = 1, rgnFilename = 2,
  24. rgnCursorPos = 4, rgnAll = 8 };
  25. int update_region;
  26. bool cursor_position_report; // report cursor position?
  27. public:
  28. StatusLine(const Editor *aBde, EditBox *aEditbox);
  29. void toggle_cursor_position_report();
  30. bool is_cursor_position_report() const {
  31. return cursor_position_report;
  32. }
  33. void request_update(region rgn);
  34. virtual void update();
  35. virtual void invalidate_view();
  36. virtual bool is_dirty() const { return update_region != rgnNone; }
  37. virtual void resize(int lines, int columns, int y, int x);
  38. // the following are inherited from EditBoxStatusListener
  39. virtual void on_wrap_change() {
  40. request_update(rgnIndicators);
  41. }
  42. virtual void on_dir_algo_change() {
  43. request_update(rgnIndicators);
  44. }
  45. virtual void on_selection_change() {
  46. request_update(rgnIndicators);
  47. }
  48. virtual void on_alt_kbd_change() {
  49. request_update(rgnIndicators);
  50. }
  51. virtual void on_auto_indent_change() {
  52. request_update(rgnIndicators);
  53. }
  54. virtual void on_auto_justify_change() {
  55. request_update(rgnIndicators);
  56. }
  57. virtual void on_modification_change() {
  58. request_update(rgnIndicators);
  59. }
  60. virtual void on_formatting_marks_change() {
  61. request_update(rgnIndicators);
  62. }
  63. virtual void on_position_change() {
  64. if (cursor_position_report)
  65. request_update(rgnCursorPos);
  66. }
  67. virtual void on_read_only_change() {
  68. request_update(rgnIndicators);
  69. }
  70. virtual void on_smart_typing_change() {
  71. request_update(rgnIndicators);
  72. }
  73. virtual void on_rtl_nsm_change() {
  74. request_update(rgnIndicators);
  75. }
  76. virtual void on_maqaf_change() {
  77. request_update(rgnIndicators);
  78. }
  79. virtual void on_translation_mode_change() {
  80. request_update(rgnIndicators);
  81. }
  82. };
  83. #endif