mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
- Use proper doxygen syntax for all function comments - ObjectMoleculeUpdateNeighbors allow const argument - Remove obsolete ObjectMolecule::BondCounter
97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
|
|
|
|
/*
|
|
A* -------------------------------------------------------------------
|
|
B* This file contains source code for the PyMOL computer program
|
|
C* Copyright (c) Schrodinger, LLC.
|
|
D* -------------------------------------------------------------------
|
|
E* It is unlawful to modify or remove this copyright notice.
|
|
F* -------------------------------------------------------------------
|
|
G* Please see the accompanying LICENSE file for further information.
|
|
H* -------------------------------------------------------------------
|
|
I* Additional authors of this source file include:
|
|
-*
|
|
-*
|
|
-*
|
|
Z* -------------------------------------------------------------------
|
|
*/
|
|
#ifndef _H_Block
|
|
#define _H_Block
|
|
|
|
#include <vector>
|
|
#include<utility>
|
|
|
|
#include "PyMOLGlobals.h"
|
|
|
|
struct BlockRect{
|
|
int top;
|
|
int left;
|
|
int bottom;
|
|
int right;
|
|
};
|
|
|
|
struct Block {
|
|
PyMOLGlobals * m_G;
|
|
void *reference = nullptr;
|
|
BlockRect rect {}, margin {};
|
|
bool active = false;
|
|
float BackColor[3] = {0.2F, 0.2F, 0.2F };
|
|
float TextColor[3] = {1.0F, 1.0F, 1.0F };
|
|
|
|
/**
|
|
* Draws this block
|
|
* @param orthoCGO CGO to append to
|
|
*/
|
|
virtual void draw(CGO *orthoCGO) {};
|
|
|
|
/**
|
|
* Draws this block (uses overidden fastDraw implementation)
|
|
* @param orthoCGO CGO to append to
|
|
*/
|
|
virtual bool fastDraw(CGO *orthoCGO) { return false; }
|
|
virtual void reshape(int width, int height);
|
|
virtual int click(int button, int x, int y, int mod) { return 0; }
|
|
virtual int cursor (int x, int y, int mod) { return 0; }
|
|
virtual int drag (int x, int y, int mod) { return 0; }
|
|
virtual int release (int button, int x, int y, int mod) { return 0; }
|
|
Block(PyMOLGlobals * _G) : m_G(_G){}
|
|
|
|
void globalToLocal(int x, int y, int *lx, int *ly);
|
|
|
|
/**
|
|
* Draws this block
|
|
* @param orthoCGO CGO to append to
|
|
* @note: Implementation no longer recursive.
|
|
*/
|
|
void recursiveDraw(CGO *orthoCGO);
|
|
|
|
/**
|
|
* Draws this block (uses overridden fastDraw implementation)
|
|
* @param orthoCGO CGO to append to
|
|
* @note: Implementation no longer recursive.
|
|
*/
|
|
bool recursiveFastDraw(CGO *orthoCGO);
|
|
|
|
/**
|
|
* Determines whether this block is located at (x, y)
|
|
* @param x cursor X location
|
|
* @param y cursor Y location
|
|
* @return pointer to this block if (x, y) is in this block; nullptr otherwise
|
|
* Note: Implementation is no longer recursive. This is essentially now
|
|
* just a evalutation to bool.
|
|
*/
|
|
Block *recursiveFind(int x, int y);
|
|
void setMargin(int t, int l, int b, int r);
|
|
void fill(CGO *orthoCGO);
|
|
int getWidth() const;
|
|
int getHeight() const;
|
|
void translate(int dx, int dy);
|
|
void drawLeftEdge(CGO *orthoCGO);
|
|
void drawTopEdge();
|
|
bool rectXYInside(int x, int y) const;
|
|
};
|
|
|
|
typedef Block** CBlock;
|
|
|
|
#endif
|