dtkAbstractData *dtkAbstractViewNavigator::output(int channel, int frame)
{
    DTK_UNUSED (channel);
    DTK_UNUSED (frame);

    return 0;
}
int medAbstractPacsStoreScp::start( const char* ourTitle, const char* ourIP, unsigned int ourPort )
{
    DTK_UNUSED(ourTitle);
    DTK_UNUSED(ourIP);
    DTK_UNUSED(ourPort);

    DTK_DEFAULT_IMPLEMENTATION;

    return 0;
}
int medAbstractImageData::scalarValueCount(int value)
{
    DTK_DEFAULT_IMPLEMENTATION;
    DTK_UNUSED(value);

    return 0;
}
Exemple #4
0
void dtkColorGrid::leaveEvent ( QEvent * event )
{
    DTK_UNUSED(event);

    QToolTip::hideText();

    if (d->idx != -1) {
        d->idx = -1;
        repaint();
    }
}
int medAbstractPacsFindScu::sendFindRequest(const char* peerTitle, const char* peerIP, unsigned int peerPort, const char* ourTitle, const char* ourIP, unsigned int ourPort)
{
    DTK_UNUSED(peerTitle);
    DTK_UNUSED(peerIP);
    DTK_UNUSED(peerPort);
    DTK_UNUSED(ourTitle);
    DTK_UNUSED(ourIP);
    DTK_UNUSED(ourPort);
    
    DTK_DEFAULT_IMPLEMENTATION;

    return 0;
}
Exemple #6
0
void dtkColorGrid::paintEvent ( QPaintEvent * event )
{
    DTK_UNUSED(event);

    QPainter p(this);
    p.fillRect(rect(), palette().button());
    p.drawPixmap(0,0, d->pix);

    d->hlColor = QColor();

    if (d->idx >= 0) {
        d->hlColor = d->colors->at(d->idx);

        int c = d->cellSize+1;
        int x = d->col * c;
        int y = d->row * c;;

        p.setPen(QPen(palette().highlight(),2));
        p.drawRect(QRect(x+1,y+1,c,c));
    }
}
dtkAbstractData *dtkAbstractDataDeserializer::deserialize(const QByteArray &array)
{
    DTK_UNUSED(array);
    return NULL ;
}
void medAbstractPacsNode::setPort( unsigned int port )
{
    DTK_UNUSED(port);
    DTK_DEFAULT_IMPLEMENTATION;
}
void medAbstractPacsNode::setIp( QString ip )
{
    DTK_UNUSED(ip);
    DTK_DEFAULT_IMPLEMENTATION;
}
void medAbstractPacsNode::setTitle( QString title )
{
    DTK_UNUSED(title);
    DTK_DEFAULT_IMPLEMENTATION;
}
void dtkVrTracker::setUrl(const QUrl& url)
{
    DTK_UNUSED(url);

    DTK_DEFAULT_IMPLEMENTATION;
}
bool medAbstractPacsStoreScp::setStorageDirectory( const char* directory )
{
    DTK_UNUSED(directory);
    return false;

}
bool dtkAbstractDataWriter::write(const QString& file)
{
    DTK_UNUSED(file);

    return false;
}
bool dtkAbstractDataWriter::canWrite(const QStringList& files)
{
    DTK_UNUSED(files);

    return false;
}