X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fxforms%2FFormCitation.C;h=a6694383f272e928eb4baab8a1cf597709f84cd8;hb=eba67bc3120dc301bf193c3f3b570f51f00a4654;hp=4762979ceff6be0c2e6ab1b62cf1bcb3e7d34d5d;hpb=db47e6bc7773b26f0f74c37a02df496c17eff444;p=lyx.git diff --git a/src/frontends/xforms/FormCitation.C b/src/frontends/xforms/FormCitation.C index 4762979cef..a6694383f2 100644 --- a/src/frontends/xforms/FormCitation.C +++ b/src/frontends/xforms/FormCitation.C @@ -10,15 +10,13 @@ */ #include - -#include FORMS_H_LOCATION +#include #ifdef __GNUG__ #pragma implementation #endif -#include "gettext.h" #include "Dialogs.h" #include "FormCitation.h" #include "LyXView.h" @@ -27,18 +25,17 @@ #include "lyxfunc.h" #include "support/filetools.h" -using std::vector; -using std::pair; +using std::find; using std::max; using std::min; -using std::find; +using std::pair; +using std::sort; +using std::vector; -static vector citekeys; -static vector bibkeys; -static vector bibkeysInfo; FormCitation::FormCitation(LyXView * lv, Dialogs * d) - : FormCommand(lv, d, _("Citation")) + : FormCommand(lv, d, _("Citation"), new NoRepeatedApplyReadOnlyPolicy), + dialog_(0) { // let the dialog be shown // These are permanent connections so we won't bother @@ -50,23 +47,55 @@ FormCitation::FormCitation(LyXView * lv, Dialogs * d) FormCitation::~FormCitation() { - free(); delete dialog_; } -void FormCitation::build() +FL_FORM * FormCitation::form() const { - dialog_ = build_citation(); + if (dialog_ ) return dialog_->form; + return 0; +} + + +void FormCitation::connect() +{ + //fl_set_form_maxsize( dialog_->form, 3*minw_, minh_ ); + FormCommand::connect(); +} + + +void FormCitation::disconnect() +{ + citekeys.clear(); + bibkeys.clear(); + bibkeysInfo.clear(); + + FormCommand::disconnect(); } -FL_FORM * const FormCitation::form() const +void FormCitation::build() { - if( dialog_ && dialog_->form_citation ) - return dialog_->form_citation; - else - return 0; + dialog_ = build_citation(); + + // Workaround dumb xforms sizing bug + minw_ = form()->w; + minh_ = form()->h; + + // Manage the ok, apply, restore and cancel/close buttons + bc_.setOK(dialog_->button_ok); + bc_.setApply(dialog_->button_apply); + bc_.setCancel(dialog_->button_cancel); + bc_.setUndoAll(dialog_->button_restore); + bc_.refresh(); + + bc_.addReadOnly(dialog_->addBtn); + bc_.addReadOnly(dialog_->delBtn); + bc_.addReadOnly(dialog_->upBtn); + bc_.addReadOnly(dialog_->downBtn); + bc_.addReadOnly(dialog_->textBefore); + bc_.addReadOnly(dialog_->textAftr); } @@ -77,8 +106,9 @@ void FormCitation::update() vector > blist = lv_->buffer()->getBibkeyList(); + sort(blist.begin(), blist.end()); - for( unsigned int i = 0; i < blist.size(); ++i ) { + for (unsigned int i = 0; i < blist.size(); ++i) { bibkeys.push_back(blist[i].first); bibkeysInfo.push_back(blist[i].second); } @@ -87,13 +117,11 @@ void FormCitation::update() citekeys.clear(); string tmp, keys( params.getContents() ); keys = frontStrip( split(keys, tmp, ',') ); - while( !tmp.empty() ) { + while (!tmp.empty()) { citekeys.push_back( tmp ); keys = frontStrip( split(keys, tmp, ',') ); } - fl_freeze_form( dialog_->form_citation ); - updateBrowser( dialog_->bibBrsr, bibkeys ); updateBrowser( dialog_->citeBrsr, citekeys ); fl_clear_browser( dialog_->infoBrsr ); @@ -102,19 +130,19 @@ void FormCitation::update() setBibButtons( OFF ); setCiteButtons( OFF ); - int noKeys = max( bibkeys.size(), citekeys.size() ); + int noKeys = static_cast( max( bibkeys.size(), citekeys.size() ) ); - // Place bounds, so that 4 <= noKeys <= 15 - noKeys = max( 4, min(15, noKeys) ); + // Place bounds, so that 4 <= noKeys <= 10 + noKeys = max(4, min(10, noKeys) ); // Re-size the form to accommodate the new browser size int size = 20 * noKeys; bool bibPresent = ( bibkeys.size() > 0 ); setSize( size, bibPresent ); - fl_set_input( dialog_->textAftr, params.getOptions().c_str() ); + fl_set_input( dialog_->textAftr, params.getOptions().c_str()); - fl_unfreeze_form( dialog_->form_citation ); + bc_.readOnly(lv_->buffer()->isReadonly()); } @@ -123,8 +151,8 @@ void FormCitation::updateBrowser( FL_OBJECT * browser, { fl_clear_browser( browser ); - for( unsigned int i = 0; i < keys.size(); ++i ) - fl_add_browser_line( browser, keys[i].c_str() ); + for (unsigned int i = 0; i < keys.size(); ++i ) + fl_add_browser_line( browser, keys[i].c_str()); } @@ -149,7 +177,7 @@ void FormCitation::setBibButtons( State status ) const void FormCitation::setCiteButtons( State status ) const { - switch( status ) { + switch (status) { case ON: { fl_activate_object( dialog_->delBtn ); @@ -157,7 +185,7 @@ void FormCitation::setCiteButtons( State status ) const int sel = fl_get_browser( dialog_->citeBrsr ); - if( sel != 1 ) { + if (sel != 1) { fl_activate_object( dialog_->upBtn ); fl_set_object_lcol( dialog_->upBtn, FL_BLACK ); } else { @@ -165,7 +193,7 @@ void FormCitation::setCiteButtons( State status ) const fl_set_object_lcol( dialog_->upBtn, FL_INACTIVE ); } - if( sel != fl_get_browser_maxline(dialog_->citeBrsr)) { + if (sel != fl_get_browser_maxline(dialog_->citeBrsr)) { fl_activate_object( dialog_->downBtn ); fl_set_object_lcol( dialog_->downBtn, FL_BLACK ); } else { @@ -194,87 +222,130 @@ void FormCitation::setCiteButtons( State status ) const void FormCitation::setSize( int hbrsr, bool bibPresent ) const { - int const hinfo = dialog_->infoBrsr->h; - int const hother = 140; - hbrsr = max( hbrsr, 175 ); - int wform = dialog_->form_citation->w; - int hform = hbrsr + hother; - - if( bibPresent ) hform += hinfo + 30; - fl_set_form_size( dialog_->form_citation, wform, hform ); - - // No resizing is alowed in the y-direction - fl_set_form_minsize( dialog_->form_citation, wform, hform ); - fl_set_form_maxsize( dialog_->form_citation, 3*wform, hform ); - + bool const natbib = false; // will eventually be input + hbrsr = max( hbrsr, 175 ); // limit max size of cite/bib brsrs + + // dh1, dh2, dh3 are the vertical separation between elements. + // These can be specified because the browser height is fixed + // so they are not changed by dynamic resizing + static int const dh1 = 30; // top of form to top of cite/bib brsrs; + // bottom of cite/bib brsrs to top of info; + // bottom of info to top next element; + // bottom of style to top textBefore; + // bottom of text to top ok/cancel buttons. + static int const dh2 = 10; // bottom of textBefore to top textAftr; + // bottom of ok/cancel buttons to bottom form + static int const dh3 = 5; // spacing between add/delete/... buttons. + + int const wbrsr = dialog_->citeBrsr->w; + static int const hinfo = dialog_->infoBrsr->h; + static int const hstyle = dialog_->style->h; + static int const htext = dialog_->textAftr->h; + static int const hok = dialog_->button_ok->h; + + int hform = dh1 + hbrsr + dh1; + if (bibPresent ) hform += hinfo + dh1; + if (natbib ) hform += hstyle + dh1 + htext + dh2; + hform += htext + dh1 + hok + dh2; + + if (hform != minh_) { + minh_ = hform; + fl_set_form_size( dialog_->form, minw_, minh_ ); + } else + return; + + int x = 0; int y = 0; - fl_set_object_geometry( dialog_->box, 0, y, wform, hform ); - y += 30; - fl_set_object_geometry( dialog_->citeBrsr, 10, y, 180, hbrsr ); - fl_set_object_geometry( dialog_->bibBrsr, 240, y, 180, hbrsr ); - - fl_set_object_position( dialog_->addBtn, 200, y ); - y += 5 + dialog_->addBtn->h; - fl_set_object_position( dialog_->delBtn, 200, y ); - y += 5 + dialog_->delBtn->h; - fl_set_object_position( dialog_->upBtn, 200, y ); - y += 5 + dialog_->upBtn->h; - fl_set_object_position( dialog_->downBtn, 200, y ); - - y = dialog_->bibBrsr->y + dialog_->bibBrsr->h; - - // awaiting natbib support - fl_hide_object( dialog_->style ); - - if( bibPresent ) { - y += 30; - fl_set_object_position( dialog_->infoBrsr, 10, y ); + fl_set_object_geometry( dialog_->box, x, y, minw_, minh_ ); + + x = dialog_->citeBrsr->x; + y += dh1; + fl_set_object_geometry( dialog_->citeBrsr, x, y, wbrsr, hbrsr ); + x = dialog_->bibBrsr->x; + fl_set_object_geometry( dialog_->bibBrsr, x, y, wbrsr, hbrsr ); + + x = dialog_->addBtn->x; + fl_set_object_position( dialog_->addBtn, x, y ); + y += dh3 + dialog_->addBtn->h; + fl_set_object_position( dialog_->delBtn, x, y ); + y += dh3 + dialog_->delBtn->h; + fl_set_object_position( dialog_->upBtn, x, y ); + y += dh3 + dialog_->upBtn->h; + fl_set_object_position( dialog_->downBtn, x, y ); + + y = dh1 + hbrsr + dh1; // in position for next element + + if (bibPresent) { + x = dialog_->infoBrsr->x; + fl_set_object_position( dialog_->infoBrsr, x, y ); fl_show_object( dialog_->infoBrsr ); - y += hinfo; - } - else + y += hinfo + dh1; + } else fl_hide_object( dialog_->infoBrsr ); - y += 20; - // awaiting natbib support - fl_hide_object( dialog_->textBefore ); + if (natbib) { + x = dialog_->style->x; + fl_set_object_position( dialog_->style, x, y ); + fl_show_object( dialog_->style ); + x = dialog_->textBefore->x; + y += hstyle + dh1; + fl_set_object_position( dialog_->textBefore, x, y ); + fl_show_object( dialog_->textBefore ); + y += htext + dh2; + } else { + fl_hide_object( dialog_->style ); + fl_hide_object( dialog_->textBefore ); + } - fl_set_object_position( dialog_->textAftr, 100, y ); - fl_set_object_position( dialog_->ok, 230, y+50 ); - fl_set_object_position( dialog_->cancel, 330, y+50 ); + x = dialog_->textAftr->x; + fl_set_object_position( dialog_->textAftr, x, y ); + + y += htext + dh1; + x = dialog_->button_restore->x; + fl_set_object_position( dialog_->button_restore, x, y ); + x = dialog_->button_ok->x; + fl_set_object_position( dialog_->button_ok, x, y ); + x = dialog_->button_apply->x; + fl_set_object_position( dialog_->button_apply, x, y ); + x = dialog_->button_cancel->x; + fl_set_object_position( dialog_->button_cancel, x, y ); } -void FormCitation::input( long data ) +#ifdef WITH_WARNINGS +#warning convert this to use the buttoncontroller +#endif +bool FormCitation::input( FL_OBJECT *, long data ) { - State cb = static_cast( data ); + bool activate = false; + State cb = static_cast( data ); - switch( cb ) { + switch (cb) { case BIBBRSR: { fl_deselect_browser( dialog_->citeBrsr ); unsigned int sel = fl_get_browser( dialog_->bibBrsr ); - if( sel < 1 || sel > bibkeys.size() ) break; + if (sel < 1 || sel > bibkeys.size() ) break; // Put into infoBrsr the additional info associated with // the selected bibBrsr key fl_clear_browser( dialog_->infoBrsr ); fl_add_browser_line( dialog_->infoBrsr, - bibkeysInfo[sel-1].c_str() ); + bibkeysInfo[sel - 1].c_str() ); // Highlight the selected bibBrsr key in citeBrsr if present vector::iterator it = find( citekeys.begin(), citekeys.end(), bibkeys[sel-1] ); - if( it != citekeys.end() ) { - int n = it - citekeys.begin(); + if (it != citekeys.end()) { + int n = static_cast( it - citekeys.begin() ); fl_select_browser_line( dialog_->citeBrsr, n+1 ); fl_set_browser_topline( dialog_->citeBrsr, n+1 ); } - if( !lv_->buffer()->isReadonly() ) { - if( it != citekeys.end() ) { + if (!lv_->buffer()->isReadonly()) { + if (it != citekeys.end()) { setBibButtons( OFF ); setCiteButtons( ON ); } else { @@ -287,9 +358,9 @@ void FormCitation::input( long data ) case CITEBRSR: { unsigned int sel = fl_get_browser( dialog_->citeBrsr ); - if( sel < 1 || sel > citekeys.size() ) break; + if (sel < 1 || sel > citekeys.size() ) break; - if( !lv_->buffer()->isReadonly() ) { + if (!lv_->buffer()->isReadonly()) { setBibButtons( OFF ); setCiteButtons( ON ); } @@ -299,7 +370,7 @@ void FormCitation::input( long data ) find( bibkeys.begin(), bibkeys.end(), citekeys[sel-1] ); if (it != bibkeys.end()) { - int n = it - bibkeys.begin(); + int n = static_cast( it - bibkeys.begin() ); fl_select_browser_line( dialog_->bibBrsr, n+1 ); fl_set_browser_topline( dialog_->bibBrsr, n+1 ); @@ -313,29 +384,30 @@ void FormCitation::input( long data ) break; case ADD: { - if( lv_->buffer()->isReadonly() ) break; + if (lv_->buffer()->isReadonly() ) break; unsigned int sel = fl_get_browser( dialog_->bibBrsr ); - if( sel < 1 || sel > bibkeys.size() ) break; + if (sel < 1 || sel > bibkeys.size() ) break; // Add the selected bibBrsr key to citeBrsr fl_addto_browser( dialog_->citeBrsr, bibkeys[sel-1].c_str() ); citekeys.push_back( bibkeys[sel-1] ); - int n = citekeys.size(); + int n = static_cast( citekeys.size() ); fl_select_browser_line( dialog_->citeBrsr, n ); setBibButtons( OFF ); setCiteButtons( ON ); + activate = true; } break; case DELETE: { - if( lv_->buffer()->isReadonly() ) break; + if (lv_->buffer()->isReadonly() ) break; unsigned int sel = fl_get_browser( dialog_->citeBrsr ); - if( sel < 1 || sel > citekeys.size() ) break; + if (sel < 1 || sel > citekeys.size() ) break; // Remove the selected key from citeBrsr fl_delete_browser_line( dialog_->citeBrsr, sel ) ; @@ -343,14 +415,15 @@ void FormCitation::input( long data ) setBibButtons( ON ); setCiteButtons( OFF ); + activate = true; } break; case UP: { - if( lv_->buffer()->isReadonly() ) break; + if (lv_->buffer()->isReadonly() ) break; unsigned int sel = fl_get_browser( dialog_->citeBrsr ); - if( sel < 2 || sel > citekeys.size() ) break; + if (sel < 2 || sel > citekeys.size() ) break; // Move the selected key up one line vector::iterator it = citekeys.begin() + sel-1; @@ -363,14 +436,15 @@ void FormCitation::input( long data ) fl_select_browser_line( dialog_->citeBrsr, sel-1 ); citekeys.insert( it-1, tmp ); setCiteButtons( ON ); + activate = true; } break; case DOWN: { - if( lv_->buffer()->isReadonly() ) break; + if (lv_->buffer()->isReadonly() ) break; unsigned int sel = fl_get_browser( dialog_->citeBrsr ); - if( sel < 1 || sel > citekeys.size()-1 ) break; + if (sel < 1 || sel > citekeys.size()-1 ) break; // Move the selected key down one line vector::iterator it = citekeys.begin() + sel-1; @@ -383,38 +457,37 @@ void FormCitation::input( long data ) fl_select_browser_line( dialog_->citeBrsr, sel+1 ); citekeys.insert( it+1, tmp ); setCiteButtons( ON ); + activate = true; } break; default: break; } + return activate; } void FormCitation::apply() { - if( lv_->buffer()->isReadonly() ) return; + if (lv_->buffer()->isReadonly()) return; string contents; - for( unsigned int i = 0; i < citekeys.size(); ++i ) { + for (unsigned int i = 0; i < citekeys.size(); ++i) { if (i > 0) contents += ", "; contents += citekeys[i]; } - params.setContents( contents ); - params.setOptions( fl_get_input(dialog_->textAftr) ); + params.setContents(contents); + params.setOptions(fl_get_input(dialog_->textAftr)); - if( inset_ != 0 ) - { + if (inset_ != 0) { // Only update if contents have changed - if( params.getCmdName() != inset_->getCmdName() || - params.getContents() != inset_->getContents() || - params.getOptions() != inset_->getOptions() ) { - inset_->setParams( params ); - lv_->view()->updateInset( inset_, true ); + if (params != inset_->params()) { + inset_->setParams(params); + lv_->view()->updateInset(inset_, true); } } else { - lv_->getLyXFunc()->Dispatch( LFUN_INSERT_CITATION, - params.getAsString().c_str() ); + lv_->getLyXFunc()->Dispatch(LFUN_CITATION_INSERT, + params.getAsString()); } }