/* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright (C) 2000 The LyX Team. * * @author Jürgen Vigna * *======================================================*/ #include #ifdef __GNUG__ #pragma implementation #endif #include "GUIRunTime_pimpl.h" #include using std::endl; extern bool finised; void GUIRunTime::Pimpl::processEvents() { while(Gnome::Main::instance()->events_pending()) Gnome::Main::instance()->iteration(FALSE); } void GUIRunTime::Pimpl::runTime() { XEvent ev; while (!finished) { Pimpl::processEvents(); if (fl_check_forms() == FL_EVENT) { lyxerr << "LyX: This shouldn't happen..." << endl; fl_XNextEvent(&ev); } } }