mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-01-21 21:20:07 -05:00
5cdfe0b6b9
--User changes -Add many tooltips to help clarify functionality. -Select multiple flames in library for del/move. Still only one allowed to be set as the current. -Show checkbox for current flame. Remember this is not necessarily what's selected. -User can now drag a square to select xforms, which keeps in sync with checkboxes. -Remove --nframes from command line. Replace with new params: --loopframes, --interpframes, --interploops. -Add two new options to EmberGenome: --cwloops --cwinterploops to specify whether rotation should go clockwise instead of the default counter clockwise. -Add these to Fractorium as checkboxes. -Apply All now also works for toggling animate flag on xforms. -Options dialog now allows user to set whether double click toggles spinners, or right click does. --Bug fixes -Selecting final and non-final xforms, and then dragging the non-final did not drag the final with it. -Selecting all xforms when a final was present, then deleting crashed the program. -Remove support for ppm files in the command line programs, it's an outdated format. -Switching between SP and DP kept reapplying the palette adjustments. --Code changes -Move build system to Visual Studio 2015 and Qt 5.6. -SSE used during addition of points to the histogram. -Remove last remnants of old flam3 C code and replace with C++. -Remove unused code involving tbb::task_group. -Make settings object a global shared_ptr singleton, so it doesn't have to be passed around.
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include "FractoriumPch.h"
|
|
#include "LibraryTreeWidget.h"
|
|
#include "Fractorium.h"
|
|
|
|
/// <summary>
|
|
/// Set a pointer to the main window.
|
|
/// </summary>
|
|
/// <param name="f">Pointer to the main Fractorium object</param>
|
|
void LibraryTreeWidget::SetMainWindow(Fractorium* f)
|
|
{
|
|
m_Fractorium = f;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Process the drop event to allow for moving items around inside of the tree.
|
|
/// </summary>
|
|
/// <param name="de">Pointer to the QDropEvent object</param>
|
|
void LibraryTreeWidget::dropEvent(QDropEvent* de)
|
|
{
|
|
QModelIndex droppedIndex = indexAt(de->pos());
|
|
auto items = selectionModel()->selectedRows();
|
|
|
|
if (!droppedIndex.isValid())//Don't process drop because it's outside of the droppable area.
|
|
{
|
|
de->ignore();
|
|
return;
|
|
}
|
|
else if (!items.empty())//Actually do the drop and move the item to a new location.
|
|
{
|
|
int row = droppedIndex.row();
|
|
DropIndicatorPosition dp = dropIndicatorPosition();
|
|
|
|
if (dp == QAbstractItemView::BelowItem)
|
|
row++;
|
|
|
|
QTimer::singleShot(500, [ = ]() { m_Fractorium->m_Controller->MoveLibraryItems(items, row); });//Need to fire this after this event has internally reshuffled the items.
|
|
}
|
|
|
|
QTreeWidget::dropEvent(de);
|
|
} |