summaryrefslogtreecommitdiff
path: root/iup/src/mot/iupmot_fontdlg.c
blob: 42767b2735e36e31c536d571c88718eb9e4ce710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** \file
 * \brief IupFontDlg pre-defined dialog
 *
 * See Copyright Notice in "iup.h"
 */

#include <Xm/Xm.h>

#include "iup.h"

#include "iup_object.h"
#include "iup_attrib.h"
#include "iup_str.h"
#include "iup_drvinfo.h"
#include "iup_dialog.h"

#include "iupmot_drv.h"


static int motFontDlgPopup(Ihandle* ih, int x, int y)
{
  (void)ih;
  (void)x;
  (void)y;
  return IUP_ERROR;
}

void iupdrvFontDlgInitClass(Iclass* ic)
{
  ic->DlgPopup = motFontDlgPopup;
}