summaryrefslogtreecommitdiff
path: root/src/d/d_pane_class_ex.cpp
diff options
context:
space:
mode:
authorTakaRikka <38417346+TakaRikka@users.noreply.github.com>2024-10-10 07:29:58 -0700
committerGitHub <noreply@github.com>2024-10-10 08:29:58 -0600
commit12eb254d769d84743b5cc6cd5424057c57eaf0ad (patch)
tree4509be332b2ccfc6fe939f47740d68f7746eca3e /src/d/d_pane_class_ex.cpp
parent2fd702c0ac170a789af879b8b92a82d4dcc9080c (diff)
switch to dtk setup (#2203)
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
Diffstat (limited to 'src/d/d_pane_class_ex.cpp')
-rw-r--r--src/d/d_pane_class_ex.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/d/d_pane_class_ex.cpp b/src/d/d_pane_class_ex.cpp
new file mode 100644
index 0000000000..8d0839e60d
--- /dev/null
+++ b/src/d/d_pane_class_ex.cpp
@@ -0,0 +1,24 @@
+//
+// d_pane_class_ex
+//
+
+#include "d/d_pane_class_ex.h"
+#include "JSystem/J2DGraph/J2DPane.h"
+#include "JSystem/J2DGraph/J2DPictureEx.h"
+#include "JSystem/J2DGraph/J2DTextBoxEx.h"
+#include "JSystem/J2DGraph/J2DWindowEx.h"
+
+static void dummyVirtualFunctions(J2DPane* pane, J2DTextBoxEx* textBoxEx, J2DTextBox* textBox,
+ J2DPictureEx* pictureEx, J2DPicture* picture,
+ J2DWindowEx* windowEx) {
+ windowEx->setAnimation((J2DAnmTransform*)NULL);
+ pictureEx->setAnimation((J2DAnmTransform*)NULL);
+ textBoxEx->setAnimation((J2DAnmTransform*)NULL);
+ picture->getMaterial();
+ pictureEx->getMaterial();
+ textBox->getMaterial();
+ textBoxEx->getMaterial();
+ pane->setAnimation((J2DAnmTexPattern*)NULL);
+ pane->setAnimation((J2DAnmVisibilityFull*)NULL);
+ pane->setAnimation((J2DAnmVtxColor*)NULL);
+} \ No newline at end of file