mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-22 12:28:51 +00:00
26 lines
690 B
C++
26 lines
690 B
C++
#ifndef GRAPH_HORIZONTAL_ADAPTER_H
|
|
#define GRAPH_HORIZONTAL_ADAPTER_H
|
|
|
|
#include "core/Cutter.h"
|
|
#include "GraphLayout.h"
|
|
|
|
#include <memory>
|
|
|
|
/**
|
|
* @brief Adapter for converting vertical graph layout into horizontal one.
|
|
*/
|
|
class GraphHorizontalAdapter : public GraphLayout
|
|
{
|
|
public:
|
|
GraphHorizontalAdapter(std::unique_ptr<GraphLayout> layout);
|
|
virtual void CalculateLayout(GraphLayout::Graph &blocks, ut64 entry, int &width,
|
|
int &height) const override;
|
|
void setLayoutConfig(const LayoutConfig &config) override;
|
|
|
|
private:
|
|
std::unique_ptr<GraphLayout> layout;
|
|
void swapLayoutConfigDirection();
|
|
};
|
|
|
|
#endif // GRAPH_HORIZONTAL_ADAPTER_H
|