_MatrixToWindow() protected méthode

protected _MatrixToWindow ( ) : NSAffineTransform
Résultat NSAffineTransform
Exemple #1
0
        public virtual NSSize ConvertSizeFromView(NSSize aSize, NSView aView)
        {
            NSSize inBase;
            NSSize inSelf;

            if (aView != null)
            {
                //NS.Assert(_window == aView.Window, @"NSInvalidArgumentException");
                inBase = aView._MatrixToWindow().TransformSize(aSize);
                if (inBase.Height < 0.0)
                {
                    inBase.Height = -inBase.Height;
                }
            }
            else
            {
                inBase = aSize;
            }

            inSelf = this._MatrixFromWindow().TransformSize(inBase);
            if (inSelf.Height < 0.0)
            {
                inSelf.Height = -inSelf.Height;
            }
            return inSelf;
        }
Exemple #2
0
        public virtual NSRect ConvertRectFromView(NSRect aRect, NSView aView)
        {
            NSAffineTransform matrix1, matrix2;

            if (aView == this || _window == null || (aView != null && aView.Window == null))
            {
                return aRect;
            }

            if (aView != null)
            {
                //NS.Assert(_window == aView.Window, @"NSInvalidArgumentException");
                matrix1 = aView._MatrixToWindow();
            }
            else
            {
                matrix1 = NSAffineTransform.Transform;
            }

            matrix2 = this._MatrixFromWindow();

            return convert_rect_using_matrices(aRect, matrix1, matrix2);
        }