Initial Commit
[packages] / xemacs-packages / xlib / lisp / xlib-composer.el
1 ;;; xlib-composer.el --- 
2
3 ;; Copyright (C) 2004,2005 by XWEM Org.
4
5 ;; Author: Zajcev Evgeny <zevlg@yandex.ru>
6 ;; Created: Fri Jun  4 18:46:04 MSD 2004
7 ;; Keywords: xlib
8 ;; X-CVS: $Id: xlib-composer.el,v 1.2 2005-04-04 19:55:28 lg Exp $
9
10 ;; This file is part of XWEM.
11
12 ;; XWEM is free software; you can redistribute it and/or modify it
13 ;; under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; XWEM is distributed in the hope that it will be useful, but WITHOUT
18 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 ;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
20 ;; License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 ;; 02111-1307, USA.
26
27 ;;; Synched up with: Not in FSF
28
29 ;;; Commentary:
30
31 ;; Composer.
32
33 ;;; Code:
34 \f
35 (require 'xlib-xlib)
36
37 (defstruct X-Composer
38   xwin
39   xpix)
40
41 \f
42 (defun X:cmr-create (xdpy)
43   "On display XDPY create new composer."
44   )
45
46 (defun X:cmr-resize (xcmr width height)
47   "Resize composer XCMR to WIDTH and HEIGHT."
48   )
49
50 \f
51 (provide 'xlib-composer)
52
53 ;;; xlib-composer.el ends here