On Thursday 12 September 2002 11:37 am, Andre Poenitz wrote:
> On Thu, Sep 12, 2002 at 10:58:46AM +0100, Angus Leeming wrote:
> > > Should that be some global thing like lyxrc?
> >
> > Only PrinterParams contains file-specific info too:
> >
> > string file_name;
> > unsigned int from_page;
> > unsigned int to_page;
>
> Hm...
>
> But if it is in Buffer, it should be stored in the .lyx,
> shouldn't it?
I don't understand your meaning. Are you saying that /if/ we
store PrinterParams then we should output the stored settings?
Ridiculous.
Personally I don't see what the fuss is about. The frontend view
could always interogate
PrinterParams & pp = controller().params();
and decide what to do with it. Perhaps something like:
void FormPrint::update()
{
PrinterParams & pp = controller().params();
if (pp.file_name == getString(dialog_->input_file)
return;
...
}
would do the trick.
Angus