Esempio n. 1
0
 TEST_FIXTURE(MxlCompilerTestFixture, MxlCompilerFromString_001)
 {
     //001 - compile from string
     Document doc(m_libraryScope);
     MxlCompiler compiler(m_libraryScope, &doc);
     string src =
         "<score-partwise version='3.0'><part-list>"
         "<score-part id='P1'><part-name>Music</part-name></score-part>"
         "</part-list><part id='P1'>"
         "<measure number='1'>"
         "<attributes>"
             "<divisions>1</divisions><key><fifths>0</fifths></key>"
             "<time><beats>4</beats><beat-type>4</beat-type></time>"
             "<clef><sign>G</sign><line>2</line></clef>"
         "</attributes>"
         "<note><pitch><step>C</step><octave>4</octave></pitch><duration>4</duration><type>whole</type></note>"
         "</measure>"
         "</part></score-partwise>";
     ImoObj* pRoot =  compiler.compile_string(src);
     CHECK( compiler.get_file_locator() == "string:" );
     ImoDocument* pDoc = dynamic_cast<ImoDocument*>(pRoot);
     CHECK( pDoc && pDoc->get_version() == "0.0" );
     CHECK( pDoc && pDoc->get_num_content_items() == 1 );
     ImoScore* pScore = dynamic_cast<ImoScore*>( pDoc->get_content_item(0) );
     CHECK( pScore != nullptr );
     CHECK( pScore && pScore->get_num_instruments() == 1 );
     CHECK( pScore && pScore->get_staffobjs_table() != nullptr );
     if (pRoot && !pRoot->is_document()) delete pRoot;
 }
Esempio n. 2
0
    TEST_FIXTURE(TableLayouterTestFixture, table_determine_grid_size_2)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string("(lenmusdoc (vers 0.0) "
            "(content (table "
                "(tableHead "
                "    (tableRow (tableCell (txt \"Cell 1,1\"))"
                "              (tableCell (colspan 2)(txt \"Cell 1,2\")) )"
                ")"
                "(tableBody "
                "    (tableRow (tableCell (txt \"Cell 1,1\"))"
                "              (tableCell (txt \"Cell 1,2\"))"
                "              (tableCell (txt \"Cell 1,3\")) )"
                "    (tableRow (tableCell (txt \"Cell 2,1\"))"
                "              (tableCell (txt \"Cell 2,2\"))"
                "              (tableCell (txt \"Cell 2,3\")) )"
                ")"
            ")) )");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );

        GraphicModel model;

        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

//        cout << "head rows=" << lyt.my_get_num_head_rows() << endl;
//        cout << "body rows=" << lyt.my_get_num_body_rows() << endl;
//        cout << "cols=" << lyt.my_get_num_cols() << endl;
        CHECK( lyt.my_get_num_head_rows() == 1 );
        CHECK( lyt.my_get_num_body_rows() == 2 );
        CHECK( lyt.my_get_num_cols() == 3 );
    }
Esempio n. 3
0
    TEST_FIXTURE(TableLayouterTestFixture, table_determine_grid_size_3)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string("(lenmusdoc (vers 0.0) "
            "(content (table "
                "(tableBody"
                    "(tableRow"
                        "(tableCell (txt \"0\") )"
                        "(tableCell (rowspan 2)(colspan 2)(txt \"0,2,5,6\") )"
                        "(tableCell (txt \"3\") )"
                    ")"
                    "(tableRow"
                        "(tableCell (txt \"4\") )"
                        "(tableCell (txt \"7\") )"
                    ")"
                ")"
            ")"
            "))");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_num_head_rows() == 0 );
        CHECK( lyt.my_get_num_body_rows() == 2 );
        CHECK( lyt.my_get_num_cols() == 4 );
    }
Esempio n. 4
0
    TEST_FIXTURE(MxlCompilerTestFixture, MxlCompilerFromFile_100)
    {
        //100 - compile raw xml file format
        Document doc(m_libraryScope);
        MxlCompiler compiler(m_libraryScope, &doc);
        string path = m_scores_path + "50000-hello-world.xml";
        ImoObj* pRoot =  compiler.compile_file(path);
        CHECK( compiler.get_file_locator() == path );
        ImoDocument* pDoc = dynamic_cast<ImoDocument*>(pRoot);
        CHECK( pDoc && pDoc->get_version() == "0.0" );
        CHECK( pDoc && pDoc->get_num_content_items() == 1 );
        ImoScore* pScore = dynamic_cast<ImoScore*>( pDoc->get_content_item(0) );
        CHECK( pScore != nullptr );
        CHECK( pScore && pScore->get_num_instruments() == 1 );
        CHECK( pScore && pScore->get_staffobjs_table() != nullptr );
        ImoInstrument* pInstr = pScore->get_instrument(0);
        CHECK( pInstr != nullptr );
        CHECK( pInstr && pInstr->get_num_staves() == 1 );
        ImoMusicData* pMD = pInstr->get_musicdata();
        CHECK( pMD != nullptr );
        CHECK( pMD && pMD->get_num_items() == 5 );
        ImoObj* pImo = pMD->get_first_child();
        CHECK( pImo && pImo->is_clef() == true );

//        cout << "Test: MxlCompilerFromFile_100" << endl;
//        cout << doc.to_string() << endl;

        if (pRoot && !pRoot->is_document()) delete pRoot;
    }
Esempio n. 5
0
    TEST_FIXTURE(TableLayouterTestFixture, table_box_created)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string("(lenmusdoc (vers 0.0) "
            "(pageLayout (pageSize 24000 35700)(pageMargins 1000 1500 3000 2500 4000) landscape) "
            "(content (table "
                "(tableHead (tableRow (tableCell (txt \"This is a head cell\")) ))"
                "(tableBody (tableRow (tableCell (txt \"This is a body cell\")) ))"
            ") ))");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );

        GraphicModel model;
        GmoBoxDocPage page(nullptr);
        GmoBoxDocPageContent box(nullptr);
        box.set_owner_box(&page);

        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();
        lyt.create_main_box(&box, UPoint(0.0f, 0.0f), 10000.0f, 20000.0f);

        GmoBox* pTableBox = lyt.my_get_main_box();
        CHECK( pTableBox != nullptr );
    }
Esempio n. 6
0
    TEST_FIXTURE(TableLayouterTestFixture, create_cell_layouters_2)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        create_doc_2(spDoc);
            //   50  40  25  15  20
            //  +---+---+---+---+---+
            //  | 0 |   1   |   3   |
            //  +---+---+---+---+---+
            //  | 5 | 6 | 7 | 8 | 9 +
            //  +---+---+---+---+---+
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_head_layouter() == nullptr );
        TableSectionLayouter* pSL = lyt.my_get_body_layouter();
        CHECK( pSL != nullptr );
        vector<TableCellLayouter*>& cellLyt = pSL->dbg_get_cell_layouters();
        CHECK( cellLyt.size() == 10 );

        CHECK( cellLyt[0]->get_cell_width() == 5000.0f );   //   50  40  25  15  20
        CHECK( cellLyt[1]->get_cell_width() == 6500.0f );   //  +---+---+---+---+---+
        CHECK( cellLyt[2] == nullptr );                        //  | 0 |   1   |   3   |
        CHECK( cellLyt[3]->get_cell_width() == 3500.0f );   //  +---+---+---+---+---+
        CHECK( cellLyt[4] == nullptr );                        //  | 5 | 6 | 7 | 8 | 9 +
        //                                                  //  +---+---+---+---+---+
        CHECK( cellLyt[5]->get_cell_width() == 5000.0f );
        CHECK( cellLyt[6]->get_cell_width() == 4000.0f );
        CHECK( cellLyt[7]->get_cell_width() == 2500.0f );
        CHECK( cellLyt[8]->get_cell_width() == 1500.0f );
        CHECK( cellLyt[9]->get_cell_width() == 2000.0f );
    }
Esempio n. 7
0
 TEST_FIXTURE(LmdCompilerTestFixture, LmdCompilerCreateEmpty)
 {
     Document doc(m_libraryScope);
     LmdCompiler compiler(m_libraryScope, &doc);
     InternalModel* pIModel = compiler.create_empty();
     ImoDocument* pDoc = dynamic_cast<ImoDocument*>(pIModel->get_root());
     CHECK( pDoc->get_version() == "0.0" );
     CHECK( pDoc->get_num_content_items() == 0 );
     delete pIModel;
 }
Esempio n. 8
0
//=======================================================================================
// ModelBuilder implementation
//=======================================================================================
ImoDocument* ModelBuilder::build_model(InternalModel* IModel)
{
    ImoDocument* pDoc = static_cast<ImoDocument*>( IModel->get_root() );
    if (pDoc)
    {
        VisitorForStructurizables v(this);
        pDoc->accept_visitor(v);
    }
    return pDoc;
}
Esempio n. 9
0
//---------------------------------------------------------------------------------------
ImoObj* Linker::add_cursor(ImoCursorInfo* pCursor)
{
    if (m_pParent && m_pParent->is_document())
    {
        ImoDocument* pDoc = static_cast<ImoDocument*>(m_pParent);
        pDoc->add_cursor_info(pCursor);
        delete pCursor;
        return NULL;
    }
    return pCursor;
}
Esempio n. 10
0
    TEST_FIXTURE(TableLayouterTestFixture, create_cell_layouters_3)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        create_doc_3(spDoc);
        //      7000      8000      9000        7000
        //  +----------+--------------------+----------+
        //  |          |      Bolfgums      |   Eesh   |
        //  |          +---------+----------+   data   |
        //  |          | forward | backward |          |
        //  +----------+---------+----------+----------+
        //  | Flumbos  |   270   |   177    |          |
        //  +----------+---------+----------+    37%   |
        //  | Garblos  |   315   |   187    |          |
        //  +----------+---------+----------+----------+
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        TableSectionLayouter* pSH = lyt.my_get_head_layouter();
        CHECK( pSH != nullptr );
        vector<TableCellLayouter*>& cellLytH = pSH->dbg_get_cell_layouters();
        CHECK( cellLytH.size() == 8 );

        CHECK( is_equal_pos(cellLytH[0]->get_cell_width(), 7000.0f) );
        CHECK( is_equal_pos(cellLytH[1]->get_cell_width(), 17000.0f) );
        CHECK( cellLytH[2] == nullptr );
        CHECK( is_equal_pos(cellLytH[3]->get_cell_width(), 7000.0f) );

        CHECK( cellLytH[4] == nullptr );
        CHECK( is_equal_pos(cellLytH[5]->get_cell_width(), 8000.0f) );
        CHECK( is_equal_pos(cellLytH[6]->get_cell_width(), 9000.0f) );
        CHECK( cellLytH[7] == nullptr );

        TableSectionLayouter* pSB = lyt.my_get_body_layouter();
        CHECK( pSB != nullptr );
        vector<TableCellLayouter*>& cellLytB = pSB->dbg_get_cell_layouters();
        CHECK( cellLytB.size() == 8 );

        CHECK( is_equal_pos(cellLytB[0]->get_cell_width(), 7000.0f) );
        CHECK( is_equal_pos(cellLytB[1]->get_cell_width(), 8000.0f) );
        CHECK( is_equal_pos(cellLytB[2]->get_cell_width(), 9000.0f) );
        CHECK( is_equal_pos(cellLytB[3]->get_cell_width(), 7000.0f) );

        CHECK( is_equal_pos(cellLytB[4]->get_cell_width(), 7000.0f) );
        CHECK( is_equal_pos(cellLytB[5]->get_cell_width(), 8000.0f) );
        CHECK( is_equal_pos(cellLytB[6]->get_cell_width(), 9000.0f) );
        CHECK( cellLytB[7] == nullptr );
    }
Esempio n. 11
0
    TEST_FIXTURE(ImVisitorTestFixture, ParagraphHeadingVisitor)
    {
        Document doc(m_libraryScope);
        doc.from_file(m_scores_path + "09002-ebook-example.lms" );
        ImoDocument* pRoot = doc.get_im_root();

        MyHPVisitor v(m_libraryScope);
        pRoot->accept_visitor(v);

//        cout << "max_depth=" << v.max_depth()
//             << ", num_in_nodes=" << v.num_in_nodes()
//             << ", num_out_nodes=" << v.num_out_nodes() << endl;
        CHECK( v.max_depth() == 1 );
        CHECK( v.num_in_nodes() == 6 );
        CHECK( v.num_out_nodes() == v.num_in_nodes() );
    }
Esempio n. 12
0
    TEST_FIXTURE(ImVisitorTestFixture, Document)
    {
        Document doc(m_libraryScope);
        doc.from_string("(lenmusdoc (vers 2.3) (content))" );
        ImoDocument* pRoot = doc.get_im_root();

        MyObjVisitor v(m_libraryScope);
        pRoot->accept_visitor(v);

//        cout << "max_depth=" << v.max_depth()
//             << ", num_in_nodes=" << v.num_in_nodes()
//             << ", num_out_nodes=" << v.num_out_nodes() << endl;
        CHECK( v.max_depth() == 3 );
        CHECK( v.num_in_nodes() == 12 );
        CHECK( v.num_out_nodes() == v.num_in_nodes() );
    }
Esempio n. 13
0
    TEST_FIXTURE(LmdCompilerTestFixture, LmdCompilerFromFile)
    {
        Document doc(m_libraryScope);
        LmdCompiler compiler(m_libraryScope, &doc);
        string path = m_scores_path + "08011-paragraph.lmd";
        InternalModel* pIModel = compiler.compile_file(path);
        CHECK( compiler.get_file_locator() == path );
        ImoDocument* pDoc = dynamic_cast<ImoDocument*>(pIModel->get_root());
        CHECK( pDoc->get_version() == "0.0" );
        CHECK( pDoc->get_num_content_items() == 1 );
        ImoParagraph* pPara = dynamic_cast<ImoParagraph*>( pDoc->get_content_item(0) );
        CHECK( pPara != NULL );
        CHECK( pPara->get_num_items() == 1 );
        ImoTextItem* pItem = dynamic_cast<ImoTextItem*>( pPara->get_first_item() );
        CHECK( pItem->get_text() == "This is a text for this example." );

        delete pIModel;
    }
Esempio n. 14
0
    TEST_FIXTURE(PresenterTestFixture, PresenterBuilder_NewDocument)
    {
        PresenterBuilder builder(m_libraryScope);

        Presenter* pPresenter = builder.new_document(ViewFactory::k_view_simple);
        CHECK( pPresenter != NULL );
        Document* pDoc = pPresenter->get_document_raw_ptr();
        ImoDocument* pImoDoc = pDoc->get_imodoc();
        CHECK( pImoDoc->get_content_item(0) == NULL );
        CHECK( pPresenter->get_num_interactors() == 1 );
        Interactor* pIntor = pPresenter->get_interactor_raw_ptr(0);
        CHECK( pIntor != NULL );
        CHECK( pIntor->get_view() != NULL );
        SimpleView* pView = dynamic_cast<SimpleView*>( pIntor->get_view() );
        CHECK( pView != NULL );

        delete pPresenter;
    }
Esempio n. 15
0
//---------------------------------------------------------------------------------------
ImoObj* Linker::add_page_info(ImoPageInfo* pPI)
{
    if (m_pParent && m_pParent->is_score())
    {
        ImoScore* pScore = static_cast<ImoScore*>(m_pParent);
        pScore->add_page_info(pPI);
        delete pPI;
        return NULL;
    }
    else if (m_pParent && m_pParent->is_document())
    {
        ImoDocument* pDoc = static_cast<ImoDocument*>(m_pParent);
        pDoc->add_page_info(pPI);
        delete pPI;
        return NULL;
    }
    return pPI;
}
Esempio n. 16
0
    TEST_FIXTURE(TableLayouterTestFixture, body_layouter_created_1)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        create_doc_1(spDoc);
        //    +---+---+---+---+
        //    | 0 |       | 3 |
        //    +---+   1   +---+
        //    | 4 |       | 7 |
        //    +---+---+---+---+
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_head_layouter() == nullptr );
        TableSectionLayouter* pSL = lyt.my_get_body_layouter();
        CHECK( pSL != nullptr );
    }
Esempio n. 17
0
    TEST_FIXTURE(TableLayouterTestFixture, table_determine_widths_1)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string("(lenmusdoc (vers 0.0) "
            "(styles"
                "(defineStyle \"table1-col1\" (table-col-width 5000))"
                "(defineStyle \"table1-col2\" (table-col-width 4000))"
                "(defineStyle \"table1-col3\" (table-col-width 2500))"
            ")"
            "(content (table "
                "(tableColumn (style \"table1-col1\"))"
                "(tableColumn (style \"table1-col2\"))"
                "(tableColumn (style \"table1-col3\"))"
                "(tableBody"
                    "(tableRow"
                        "(tableCell (txt \"0\") )"
                        "(tableCell (txt \"1+(2,5,6)\") )"
                        "(tableCell (txt \"3\") )"
                    ")"
                    "(tableRow"
                        "(tableCell (txt \"4\") )"
                        "(tableCell (txt \"7\") )"
                        "(tableCell (txt \"8\") )"
                    ")"
                ")"
            ")"
            "))");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_num_cols() == 3 );
        CHECK( lyt.my_get_column_width(0) == 5000.0f );
        CHECK( lyt.my_get_column_width(1) == 4000.0f );
        CHECK( lyt.my_get_column_width(2) == 2500.0f );
        CHECK( lyt.my_get_table_width() == 11500.0f );
    }
Esempio n. 18
0
    TEST_FIXTURE(TableLayouterTestFixture, table_determine_widths_3)
    {
        //       7000   8000
        //    +-------+-------+
        //    |   0H  |   1H  |
        //    +=======+=======+
        //    |   0B  |   1B  |
        //    +-------+-------+
        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string(
            "(lenmusdoc (vers 0.0)"
            "(styles"
            "   (defineStyle \"table1-col1\" (table-col-width 7000))"
            "   (defineStyle \"table1-col2\" (table-col-width 8000))"
            ")"
            "(content (table "
                "(tableColumn (style \"table1-col1\"))"
                "(tableColumn (style \"table1-col2\"))"
                "(tableHead (tableRow"
                    "(tableCell (txt \"This is head cell 1\"))"
                    "(tableCell (txt \"This is head cell 2\"))"
                "))"
                "(tableBody (tableRow"
                    "(tableCell (txt \"This is body cell 1\"))"
                    "(tableCell (txt \"This is body cell 2\"))"
                "))"
            ")) )");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_num_cols() == 2 );
        CHECK( is_equal_pos(lyt.my_get_column_width(0), 7000.0f) );
        CHECK( is_equal_pos(lyt.my_get_column_width(1), 8000.0f) );
        CHECK( is_equal_pos(lyt.my_get_table_width(), 15000.0f) );
    }
Esempio n. 19
0
    TEST_FIXTURE(TableLayouterTestFixture, table_determine_widths_2)
    {
        SpDocument spDoc( new Document(m_libraryScope) );
        create_doc_1(spDoc);
        //    +---+---+---+---+
        //    | 0 |       | 3 |
        //    +---+   1   +---+
        //    | 4 |       | 7 |
        //    +---+---+---+---+
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        CHECK( lyt.my_get_num_cols() == 4 );
        CHECK( lyt.my_get_column_width(0) == 5000.0f );
        CHECK( lyt.my_get_column_width(1) == 4000.0f );
        CHECK( lyt.my_get_column_width(2) == 2500.0f );
        CHECK( lyt.my_get_column_width(3) == 1500.0f );
        CHECK( lyt.my_get_table_width() == 13000.0f );
    }
Esempio n. 20
0
 TEST_FIXTURE(LmdCompilerTestFixture, LmdCompilerFromString)
 {
     Document doc(m_libraryScope);
     LmdCompiler compiler(m_libraryScope, &doc);
     string src =
         "<lenmusdoc vers='0.0'>"
             "<content>"
                 "<ldpmusic>"
                     "(score (vers 1.6)(instrument (musicData (clef G)(n c4 q.))))"
                 "</ldpmusic>"
             "</content>"
         "</lenmusdoc>";
     InternalModel* pIModel = compiler.compile_string(src);
     CHECK( compiler.get_file_locator() == "string:" );
     ImoDocument* pDoc = dynamic_cast<ImoDocument*>(pIModel->get_root());
     CHECK( pDoc->get_version() == "0.0" );
     CHECK( pDoc->get_num_content_items() == 1 );
     ImoScore* pScore = dynamic_cast<ImoScore*>( pDoc->get_content_item(0) );
     CHECK( pScore != NULL );
     CHECK( pScore->get_num_instruments() == 1 );
     CHECK( pScore->get_staffobjs_table() != NULL );
     CHECK( pScore->get_version_string() == "1.6" );
     delete pIModel;
 }
Esempio n. 21
0
    TEST_FIXTURE(TableLayouterTestFixture, table_logical_rows_4)
    {
//        +---+---+---+
//        | 0 | 1 | 2 |
//        +---+   +   +
//        | 3 |   |   |
//        +---+---+   +
//        | 6 | 7 |   |
//        +---+---+---+
//        | 9 |10 |11 |
//        +---+---+---+

        SpDocument spDoc( new Document(m_libraryScope) );
        spDoc->from_string(
            "(lenmusdoc (vers 0.0)"
            "(styles"
            "   (defineStyle \"table1-col1\" (table-col-width 70))"
            "   (defineStyle \"table1-col2\" (table-col-width 80))"
            "   (defineStyle \"table1-col3\" (table-col-width 90))"
            ")"
            "(content (table "
                "(tableColumn (style \"table1-col1\"))"
                "(tableColumn (style \"table1-col2\"))"
                "(tableColumn (style \"table1-col3\"))"
                "(tableBody"
                    "(tableRow"
                        "(tableCell (txt \"cell 0\") )"
                        "(tableCell (rowspan 2)(txt \"cell 1\") )"
                        "(tableCell (rowspan 3)(txt \"cell 2\") )"
                    ")"
                    "(tableRow"
                        "(tableCell (txt \"cell 3\") )"
                    ")"
                    "(tableRow"
                        "(tableCell (txt \"cell 6\") )"
                        "(tableCell (txt \"cell 7\") )"
                    ")"
                    "(tableRow"
                        "(tableCell (txt \"cell 9\") )"
                        "(tableCell (txt \"cell 10\") )"
                        "(tableCell (txt \"cell 11\") )"
                    ")"
                ")"
            ")"
            "))");
        ImoDocument* pDoc = spDoc->get_im_root();
        ImoStyles* pStyles = pDoc->get_styles();
        ImoTable* pTable = static_cast<ImoTable*>( pDoc->get_content_item(0) );
        GraphicModel model;
        MyTableLayouter lyt(pTable, &model, m_libraryScope, pStyles);
        lyt.prepare_to_start_layout();

        TableSectionLayouter* pSH = lyt.my_get_head_layouter();
        CHECK( pSH == nullptr );

        TableSectionLayouter* pSB = lyt.my_get_body_layouter();
        CHECK( pSB != nullptr );
        vector<int>& rowStart = pSB->dbg_get_row_start();
//        cout << "size=" <<  rowStart.size() << endl;
        CHECK( rowStart.size() == 2 );
        CHECK( rowStart[0] == 0 );
        CHECK( rowStart[1] == 3 );
    }