Click here to Skip to main content
15,891,184 members
Articles / Mobile Apps

Windows Mobile Password Safe

Rate me:
Please Sign up or sign in to vote.
4.87/5 (58 votes)
12 Jan 2009CPOL16 min read 160.5K   3.1K   139  
A password safe with a touch screen UI introducing Fluid Controls.
using System;

using System.Collections.Generic;
using System.Text;
using Fluid.Drawing.GdiPlus;

namespace Fluid.GdiPlus.NativeMethods
{
    internal partial class GdiPlus
    {
        //GpStatus
        //DrawString(
        //     string text,
        //     int           length,
        //     FontPlus         font,
        //     RectangleF        layoutRect,
        //     StringFormatPlus stringFormat,
        //     BrushPlus        brush
        //)
        //{
        //    return SetStatus(NativeMethods.GdipDrawString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        layoutRect,
        //        stringFormat != null ? stringFormat.nativeFormat : null,
        //        brush != null? brush.nativeBrush : null
        //    ));
        //}

        //GpStatus
        //DrawString(
        //     string text,
        //    int                 length,
        //     FontPlus         font,
        //     PointF       origin,
        //     BrushPlus        brush
        //)
        //{
        //    RectangleF rect = new RectangleF(origin.X, origin.Y, 0.0f, 0.0f);

        //    return SetStatus(NativeMethods.GdipDrawString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        rect,
        //        null,
        //        brush != null? brush.nativeBrush : null
        //    ));
        //}

        //GpStatus
        //DrawString(
        //     string text,
        //     int                 length,
        //     FontPlus         font,
        //     PointF       origin,
        //     StringFormatPlus stringFormat,
        //     BrushPlus        brush
        //)
        //{
        //    RectangleF rect = new RectangleF(origin.X, origin.Y, 0.0f, 0.0f);

        //    return SetStatus(NativeMethods.GdipDrawString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        &rect,
        //        stringFormat != null? stringFormat.nativeFormat : null,
        //        brush != null? brush.nativeBrush : null
        //    ));
        //}

        //GpStatus
        //MeasureString(
        //     string text,
        //     int    length,
        //     FontPlus         font,
        //     RectangleF        layoutRect,
        //     StringFormatPlus stringFormat,
        //    out RectangleF             boundingBox,
        //    out int               codepointsFitted,
        //    out int               linesFilled
        //)
        //{
        //    return SetStatus(NativeMethods.GdipMeasureString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        layoutRect,
        //        stringFormat != null? stringFormat.nativeFormat : null,
        //        boundingBox,
        //        codepointsFitted,
        //        linesFilled
        //    ));
        //}

        //GpStatus
        //MeasureString(
        //     string text,
        //    int                 length,
        //     FontPlus         font,
        //     SizeF        layoutRectSize,
        //     StringFormatPlus stringFormat,
        //    out SizeF             size,
        //    out int               codepointsFitted,
        //    out int               linesFilled
        //)
        //{
        //    RectangleF   layoutRect= new RectangleF(0, 0, layoutRectSize.Width, layoutRectSize.Height);
        //    RectangleF   boundingBox;
        //    GpStatus  status;

        //    if (size == null)
        //    {
        //        return SetStatus(InvalidParameter);
        //    }

        //    status = SetStatus(NativeMethods.GdipMeasureString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        layoutRect,
        //        stringFormat != null? stringFormat.nativeFormat : null,
        //        size != null? boundingBox : null,
        //        codepointsFitted,
        //        linesFilled
        //    ));

        //    if (size != null && status == GpStatus.Ok)
        //    {
        //        size.Width  = boundingBox.Width;
        //        size.Height = boundingBox.Height;
        //    }

        //    return status;
        //}

        //GpStatus
        //MeasureString(
        //     string text,
        //    int                 length,
        //     FontPlus         font,
        //     PointF       origin,
        //     StringFormatPlus stringFormat,
        //    out RectangleF             boundingBox
        //)
        //{
        //    RectangleF rect = new RectangleF(origin.X, origin.Y, 0.0f, 0.0f);

        //    return SetStatus(NativeMethods.GdipMeasureString(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        out rect,
        //        stringFormat != null? stringFormat.nativeFormat : null,
        //        boundingBox,
        //        null,
        //        null
        //    ));
        //}


        //GpStatus
        //MeasureCharacterRanges(
        //    string text,
        //    int                 length,
        //     FontPlus         font,
        //     RectangleF        layoutRect,
        //     StringFormatPlus stringFormat,
        //    int                 regionCount,
        //    RegionPlus[]            regions
        //)
        //{
        //    if (!regions || regionCount <= 0)
        //    {
        //        return InvalidParameter;
        //    }

        //    GpRegion[] nativeRegions = new GpRegion [regionCount];


        //    for (int i = 0; i < regionCount; i++)
        //    {
        //        nativeRegions[i] = regions[i].nativeRegion;
        //    }

        //    GpStatus status = SetStatus(NativeMethods.GdipMeasureCharacterRanges(
        //        nativeGraphics,
        //        text,
        //        length,
        //        font != null? font.nativeFont : null,
        //        layoutRect,
        //        stringFormat != null? stringFormat.nativeFormat : null,
        //        regionCount,
        //        nativeRegions
        //    ));


        //    return status;
        //}


    }
}

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 Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
MCPD
Enterprise Application Developer 3.5
Windows Developer 3.5
.ASP.NET Developer 3.5
.NET 2.0 Windows Developer
.NET 2.0 Web Developer
.NET 2.0 Enterprise Application Developer


MCTS
.NET 3.5 Windows Forms Applications
.NET 3.5 ASP.NET Applications
.NET 3.5, ADO.NET Application Development
.NET 3.5 WCF
.NET 3.5 WPF
.NET 3.5 WF
Microsoft SQL Server 2008, Database Development
.NET 2.0 Windows Applications
.NET 2.0 Web Applications
.NET 2.0 Distributed Applications
SQL Server 2005
Sharepoint Services 3.0 Application Development
Windows Vista Client Configuration

Comments and Discussions