Pairing MLAPP (AppDesigner) Apps With Other Classes

13 visualizaciones (últimos 30 días)
Alexander Cochran
Alexander Cochran el 15 de Jun. de 2018
Comentada: Noah Griffiths el 27 de Jul. de 2021
I'm currently building an object-oriented system that groups medical imaging data together for processing. I wish to make the system very easy to use, so GUIs are an attractive next step.
What's the best way that I can pair GUIs (MLAPPs designed in AppDesigner, specifically) with my existing class structure to allow the GUI objects to call different member functions?
Example:
Class1 (top-level grouping class, where an array of Class2 objects is stored)
Class2 (second-level grouping class, where an array of Class3 objects is stored)
Class3 (lower-level data class, containing actual medical imaging data)
I would want to initialize all objects (starting with a Class1) and then be able to use the GUI to select a Class2 (a group of Class3 objects) or an individual Class3 object, and then perform processing functions on it (e.g., select a dataset, hit some buttons, do processing). I understand how callbacks work, but I'm curious what the best way to go about sharing data between GUI objects instantiated in my Class1 and other objects would be.
  1 comentario
Guillaume
Guillaume el 15 de Jun. de 2018
So if I understood correctly you'd have something like:
classdef Class1
properties %what access restrictions?
Class2 child;
end
end
classdef Class2
properties %what access restrictions?
Class3 child;
end
end
classdef Class3
end
That is Class1 has a member that is of type Class2 and Class2 has a member that is of type Class3. After that I'm not sure what's your question nor why it would involve callbacks.

Iniciar sesión para comentar.

Respuestas (1)

Chris Portal
Chris Portal el 17 de Jun. de 2018
This is how I’d approach it:
  1. Use the app window’s StartupFcn callback to initialize all your Class1, Class2, and Class3 objects.
  2. Save the Class1 instance as a property of your app, called something like “MyMedicalData”.
  3. Also in this callback, populate whatever UI components (dropdown, tree, etc.) you’re going to use for presenting and selecting the individual Class2 and Class3 objects.
  4. Configure the callbacks for the UI components you use to access the appropriate class objects you need via the app property you created. Something like app.MyMedicalData.GetArrayOfClass2Objects.
(Note, I’m assuming your Class1 definition has some kind of GetArrayOfClass2Objects property or method to navigate your internal data structures.)
  3 comentarios
Aditya Mahesh
Aditya Mahesh el 3 de Feb. de 2020
Where is the class 1, class2 and class 3 definition created within the appdesigner?
Noah Griffiths
Noah Griffiths el 27 de Jul. de 2021
@Alexander Cochran as far as I'm aware, having anything but the class created in the constructor is bad quality code i.e. doing so creates tight coupling and poor cohesion. Even constructors can be dangerous in certain situations.
Here is a really useful resource for creating quality code:
https://refactoring.guru/refactoring/smells

Iniciar sesión para comentar.

Categorías

Más información sobre Software Development Tools en Help Center y File Exchange.

Productos


Versión

R2016a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by