Click here to Skip to main content
15,886,840 members
Articles / Programming Languages / C#

TblProc: OpenOffice Calc and Excel

Rate me:
Please Sign up or sign in to vote.
4.81/5 (19 votes)
29 Jan 2009CDDL8 min read 188.1K   5.5K   53  
OpenOffice Calc and Excel
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Win32;

/********************************************************************************
* Copyright : Alexander Sazonov 2009                                           //
*                                                                              //
* Email : sazon666@mail.ru                                                     //
*         sazon@freemail.ru                                                    // 
*                                                                              //
* This code may be used in any way you desire. This                            //
* file may be redistributed by any means PROVIDING it is                       //
* not sold for profit without the authors written consent, and                 //
* providing that this notice and the authors name is included.                 //
*                                                                              //
* This file is provided 'as is' with no expressed or implied warranty.         //
* The author accepts no liability if it causes any damage to your computer.    //
*                                                                              //
* Expect Bugs.                                                                 //
* Please let me know of any bugs/mods/improvements.                            //
* and I will try to fix/incorporate them into this file.                       //
* thx Amar Chaudhary for disclaimer text ;-)                                   //
* Enjoy!                                                                       //
*                                                                              //
*/
/////////////////////////////////////////////////////////////////////////////////

//Abstract table processor interface and sum logic. Use this to avoid concrete 
//table processor dependencies.

namespace SA.TblProc
{
    public abstract class TableProcessor
    {
        public abstract TableSheet FirstPage { get; }
        public abstract TableSheet LastPage { get; }
        public abstract TableSheet CreateNextPage(string name, int startRow);
        public virtual TableSheet CreateNextPage(string name)
        {
            return CreateNextPage(name, 1);
        }
        public abstract TableSheet this[int idx] { get; }

        public static TableProcessor CreateAvailable()
        {
            return CreateAvailable(null, 1);
        }
        public static TableProcessor CreateAvailable(string name)
        {
            return CreateAvailable(name, 1);
        }
        public static bool OOAvailable
        {
            get
            {
                using (RegistryKey rk = Registry.ClassesRoot)
                {
                    using (RegistryKey sub = rk.OpenSubKey("com.sun.star.ServiceManager"))
                    {
                        return (sub != null);   
                    }
                }
            }
        }
        public static bool ExcelAvailable
        {
            get
            {
                using (RegistryKey rk = Registry.ClassesRoot)
                {
                    using (RegistryKey sub = rk.OpenSubKey("Excel.Application"))
                    {
                        return (sub != null);
                    }
                }
            }
        }
        public static TableProcessor CreateAvailable(string name, int startRow)
        {
            if (ExcelAvailable) return CreateExcel(name, startRow);
            if (OOAvailable) return CreateOO(name, startRow);
            throw new NoTableProcessorsAvailableException("�� ������ Microsoft Excel ��� Open Office Calc");
        }
        public static Excel.ExcelApp CreateExcel(string name, int startRow)
        {
            return new Excel.ExcelApp(name, startRow);
        }
        public static OO.OOApp CreateOO(string name, int startRow)
        {
            return new OO.OOApp(name, startRow);
        }

        public abstract bool Visible { set; }

    }
    

    public class NoTableProcessorsAvailableException : ApplicationException
    {
        public NoTableProcessorsAvailableException(string msg) : base(msg) { }
    }
}

namespace SA.TblProc.Null
{
    public class TableProcessorNull : TableProcessor, INull
    {
        private static TableProcessorNull nullObj = new TableProcessorNull();
        private TableProcessorNull() { }
        public static TableProcessorNull Get() { return nullObj; }

        public override TableSheet FirstPage
        { get { return TableSheetNull.Get(); } }
        public override TableSheet LastPage
        { get { return TableSheetNull.Get(); } }
        public override TableSheet CreateNextPage(string name, int startRow)
        { return TableSheetNull.Get(); }
        public override TableSheet this[int idx]
        { get { return TableSheetNull.Get(); } }

        public override bool Visible { set { } }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Software Developer (Senior)
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions