mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-01 05:25:55 +00:00
39b3fd44b9
Added the auto-conversion of images to InsetGraphics, this adds support for bitmap images. Modified the mechanism of image loading for inline viewing - still not working though. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1457 a592a061-630c-0410-9148-cb99ea01b6c8
22 lines
539 B
C
22 lines
539 B
C
// -*- C++ -*-
|
|
/* This file is part of
|
|
* =================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
* Copyright 1995 Matthias Ettrich.
|
|
* Copyright 1995-2000 The LyX Team.
|
|
*
|
|
* This file Copyright 2000 Baruch Even
|
|
* ================================================= */
|
|
|
|
#include <config.h>
|
|
#include "LyXImage.h"
|
|
|
|
|
|
#ifndef X_DISPLAY_MISSING
|
|
#include "LyXImage_X.C"
|
|
#elif defined(DO_WINDOWS)
|
|
// Not implemented, for illustration only.
|
|
#include "LyXImage_Windows.C"
|
|
#endif
|