rocket/ogl_editor/src/TrackView.h
2012-11-14 22:42:16 +01:00

32 lines
689 B
C

#pragma once
#include "Types.h"
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
struct TrackData* trackData;
typedef struct TrackViewInfo
{
int scrollPosY;
int scrollPosX;
int windowSizeX;
int windowSizeY;
int rowPos;
int startRow;
int endRow;
int startTrack;
int smallFontId;
int selectStartTrack;
int selectStopTrack;
int selectStartRow;
int selectStopRow;
} TrackViewInfo;
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void TrackView_init();
bool TrackView_render(TrackViewInfo* viewInfo, struct TrackData* trackData);