]> git.lyx.org Git - lyx.git/blobdiff - src/TableLayout.C
more changes, read the Changelog
[lyx.git] / src / TableLayout.C
index 56700481db3234e1bc768e4f1256c76550dc9752..810b281358a25b943585dd52b28b26a5079546c2 100644 (file)
 #include "vspace.h"
 #include "lyx_gui_misc.h"
 #include "BufferView.h"
-#include "lyxscreen.h"
 #include "gettext.h"
 #include "lyxtext.h"
 #include "layout.h"
+#include "insets/lyxinset.h"
 
-extern void BeforeChange();
 
 // Prototypes
 extern FD_form_table_options * fd_form_table_options;
 extern FD_form_table_extra * fd_form_table_extra;
 extern BufferView * current_view;
 
+extern bool UpdateLayoutTabular(int);
+extern void TabularOptionsCB(FL_OBJECT * ob, long l);
+extern void SetPWidthTabularCB(FL_OBJECT * ob, long l);
+
+
 static int Confirmed = false;
 static int ActCell;
 
 // hack to keep the cursor from jumping to the end of the text in the Extra
-// form input fields during editing. The values in LyXTable itself is changed in
-// real-time, but we have no callbacks for the input fields, so I simply
-// store and restore the cursor position for now. (too much of a hazzle to
-// do it proper; we'll trash all this code in 1.1 anyway)
+// form input fields during editing. The values in LyXTable itself is
+// changed in real-time, but we have no callbacks for the input fields,
+// so I simply store and restore the cursor position for now.
+// (too much of a hazzle to do it proper; we'll trash all this code
+// in 1.1 anyway)
 static int extra_col_cursor_x; // need no y's, one-line input fields
 static int extra_multicol_cursor_x;
 // Joacim
 
+#define IS_TABULAR  (current_view->the_locking_inset && \
+                    current_view->the_locking_inset->GetFirstLockingInsetOfType(Inset::TABULAR_CODE))
+
 bool UpdateLayoutTable(int flag)
 {
     bool update = true;
-    if (!current_view->getScreen() || !current_view->available())
+    if (!current_view->available())
         update = false;
     
-    if (update && current_view->buffer()->text->cursor.par->table) {
+    if (update && current_view->text->cursor.par()->table) {
         char buf[12];
         string pwidth, special;
    
-        LyXTable * table = current_view->buffer()->text->cursor.par->table;
+        LyXTable * table = current_view->text->cursor.par()->table;
 
-        int cell = current_view->buffer()->text->
-            NumberOfCell(current_view->buffer()->text->cursor.par
-                         current_view->buffer()->text->cursor.pos);
+        int cell = current_view->text->
+            NumberOfCell(current_view->text->cursor.par()
+                         current_view->text->cursor.pos());
         ActCell = cell;
         int column = table->column_of_cell(cell)+1;
         fl_set_object_label(fd_form_table_options->text_warning, "");
@@ -239,7 +247,6 @@ void OpenLayoutTableExtra()
        }
 }
 
-
 void MenuLayoutTable(int flag)
 {
     if (UpdateLayoutTable(flag)) {
@@ -255,25 +262,25 @@ void MenuLayoutTable(int flag)
 }
 
 
-void TableOptionsCB(FL_OBJECT * ob, long)
+void TableOptionsCB(FL_OBJECT * ob, long l)
 {
+    if (IS_TABULAR) {
+       TabularOptionsCB(ob, l);
+       return;
+    }
+
     LyXTable * table = 0;
-    int
-        s,
-        num = 0;
-    string
-        special,
-        str;
+    int s, num = 0;
+    string special, str;
 
     if (!current_view->available()
-       ||
-       !(table = current_view->buffer()->text->cursor.par->table)) {
+       || !(table = current_view->text->cursor.par()->table)) {
         MenuLayoutTable(0);
        return;
       }
-    int cell = current_view->buffer()->text->
-        NumberOfCell(current_view->buffer()->text->cursor.par
-                     current_view->buffer()->text->cursor.pos);
+    int cell = current_view->text->
+        NumberOfCell(current_view->text->cursor.par()
+                     current_view->text->cursor.pos());
     if (ActCell != cell) {
         MenuLayoutTable(0);
         fl_set_object_label(fd_form_table_options->text_warning,
@@ -283,6 +290,7 @@ void TableOptionsCB(FL_OBJECT * ob, long)
        extra_multicol_cursor_x = 0;
         return;
     }
+
     // No point in processing directives that you can't do anything with
     // anyhow, so exit now if the buffer is read-only.
     if (current_view->buffer()->isReadonly()) {
@@ -422,18 +430,18 @@ void TableOptionsCB(FL_OBJECT * ob, long)
         num = LyXTable::SET_SPECIAL_MULTI;
     } else
         return;
-    if (current_view->available()){
-        current_view->getScreen()->HideCursor();
-        if (!current_view->buffer()->text->selection){
-            BeforeChange(); 
-            current_view->buffer()->update(-2);
+    if (current_view->available()) {
+        current_view->hideCursor();
+        if (!current_view->text->selection){
+            current_view->beforeChange();
+            current_view->update(BufferView::SELECT|BufferView::FITCUR);
         }
         if ((num == LyXTable::SET_SPECIAL_COLUMN) ||
             (num == LyXTable::SET_SPECIAL_MULTI))
-            current_view->buffer()->text->TableFeatures(num, special);
+            current_view->text->TableFeatures(current_view, num, special);
         else
-            current_view->buffer()->text->TableFeatures(num);
-        current_view->buffer()->update(1);
+            current_view->text->TableFeatures(current_view, num);
+        current_view->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
     }
     if (num == LyXTable::DELETE_TABLE) {
        fl_set_focus_object(fd_form_table_options->form_table_options,
@@ -444,6 +452,7 @@ void TableOptionsCB(FL_OBJECT * ob, long)
     return;
 }
 
+
 void TableOptCloseCB(FL_OBJECT *, long)
 {
     fl_set_focus_object(fd_form_table_options->form_table_options,
@@ -460,28 +469,31 @@ void TableSpeCloseCB(FL_OBJECT *, long)
     return;
 }
 
-void SetPWidthCB(FL_OBJECT *ob, long)
+void SetPWidthCB(FL_OBJECT * ob, long l)
 {
+    if (IS_TABULAR) {
+       SetPWidthTabularCB(ob, l);
+       return;
+    }
+
     fl_set_object_label(fd_form_table_options->text_warning, "");
     Confirmed = false;
     if (ob == fd_form_table_options->input_column_width) {
-        string
-            str;
-        str = fl_get_input(ob);
+        string str = fl_get_input(ob);
         if (!str.empty() && !isValidLength(str)) {
             fl_set_object_label(fd_form_table_options->text_warning,
-                            _("Warning: Invalid Length (valid example: 10mm)"));
+                           _("Warning: Invalid Length (valid example: 10mm)"));
             fl_show_object(fd_form_table_options->text_warning);
             return;
         }
         if (current_view->available()){
-            current_view->getScreen()->HideCursor();
-            if (!current_view->buffer()->text->selection){
-                BeforeChange(); 
-                current_view->buffer()->update(-2);
+            current_view->hideCursor();
+            if (!current_view->text->selection) {
+                current_view->beforeChange(); 
+                current_view->update(BufferView::SELECT|BufferView::FITCUR);
             }
-            current_view->buffer()->text->TableFeatures(LyXTable::SET_PWIDTH, str);
-            current_view->buffer()->update(1);
+            current_view->text->TableFeatures(current_view, LyXTable::SET_PWIDTH, str);
+            current_view->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
         }
         MenuLayoutTable(0); // update for alignment
     }