need help with my interface

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
campsi
In need of some credit
In need of some credit
Posts: 1
Joined: Mon Jun 05, 2023 9:26 am

need help with my interface

Post by campsi »

Hi! I am new to wxWidgets and actually still learning programming. I am trying to create a window that has a view similar to the one that audacity has, or some daws: you can create tracks and they keep stacking one under the other, each track is draggable and resizable individually, like a grid with only one cell, and inside each track i want to add widgets. So it's actually everything a grid with one cell would have, but this cell should be a panel to add widgets in it or something like that.

Can you guide me so i know where to look or help me in some way?

I am posting a snippet of audacity from google:
https://www.maketecheasier.com/assets/u ... ure-1.jpeg

thank you very much!
ONEEYEMAN
Part Of The Furniture
Part Of The Furniture
Posts: 7477
Joined: Sat Apr 16, 2005 7:22 am
Location: USA, Ukraine

Re: need help with my interface

Post by ONEEYEMAN »

Hi,
Can you do a sketch on paper and post it here?

Thank you.
User avatar
nore
I live to help wx-kind
I live to help wx-kind
Posts: 167
Joined: Mon Apr 17, 2023 10:18 am
Location: San Francisco

Re: need help with my interface

Post by nore »

Wow, audacity sure has changed in the years since I have used it. You would probably have to create various wxPanel objects to put different components and functionality in. You would likely have to look into some libraries for the audio stuff, though.
Post Reply