ui/motif/image.c

Mon, 29 Sep 2025 21:14:46 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 29 Sep 2025 21:14:46 +0200
changeset 779
b84cbe57e0bd
parent 638
51adf061e18f
permissions
-rw-r--r--

change UiCellValue from struct to union and pass it as pointer to the onsave function, for better compatibility with other languages

153
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * To change this license header, choose License Headers in Project Properties.
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 * To change this template file, choose Tools | Templates
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * and open the template in the editor.
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 */
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 #include "image.h"
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8
638
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
9
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
10
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
11 void ui_image_ref(UIIMAGE img) {
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
12 // TODO
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
13 }
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
14
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
15 void ui_image_unref(UIIMAGE img) {
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
16 // TODO
51adf061e18f fix motif build
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
17 }

mercurial