void TREE_KERNEL::SLOT_BUTTON_CLICKED()
{
    QTreeWidgetItem * item   = m_tree_widget->currentItem();
    QAbstractButton * button = ( QAbstractButton * )sender();

    QStringList column_datas;
    column_datas = GET_COLUMN_DATAS_FROM_ITEM(item);

    BUTTON_CLICKED ( button, column_datas );
}
void TREE_ARAMA_KERNEL::SLOT_BUTTON_CLICKED()
{
    QTreeWidgetItem * item = m_tree_widget->currentItem();

    if (item EQ NULL) {
        return;
    }

    QAbstractButton * button = ( QAbstractButton * )sender();
    BUTTON_CLICKED ( button, GET_COLUMN_DATAS_FROM_ITEM(item) );
}
void TREE_SECIM_KERNEL::SLOT_BUTTON_CLICKED()
{
    QAbstractButton * button = ( QAbstractButton * )sender();
    BUTTON_CLICKED ( button, QStringList());
}