Example #1
0
File: KZip.cs Project: KDE/kimono
 /// <remarks>
 ///  Call this before writeFile or prepareWriting, to define whether the next
 ///  files to be written should be compressed or not.
 /// <param> name="c" the new compression mode
 /// </param></remarks>        <short>    Call this before writeFile or prepareWriting, to define whether the next  files to be written should be compressed or not.</short>
 ///         <see> compression</see>
 public void SetCompression(KZip.Compression c)
 {
     interceptor.Invoke("setCompression$", "setCompression(KZip::Compression)", typeof(void), typeof(KZip.Compression), c);
 }
Example #2
0
File: KZip.cs Project: KDE/kimono
 /// <remarks>
 ///  Call this before writeFile or prepareWriting, to define what the next
 ///  file to be written should have in its extra field.
 /// <param> name="ef" the type of "extra field"
 /// </param></remarks>        <short>    Call this before writeFile or prepareWriting, to define what the next  file to be written should have in its extra field.</short>
 ///         <see> extraField</see>
 public void SetExtraField(KZip.ExtraField ef)
 {
     interceptor.Invoke("setExtraField$", "setExtraField(KZip::ExtraField)", typeof(void), typeof(KZip.ExtraField), ef);
 }
Example #3
0
 /// <remarks>
 ///  Creates a new zip file entry. Do not call this, KZip takes care of it.
 ///      </remarks>        <short>    Creates a new zip file entry.</short>
 public KZipFileEntry(KZip zip, string name, int access, int date, string user, string group, string symlink, string path, long start, long uncompressedSize, int encoding, long compressedSize)
     : this((Type) null)
 {
     CreateProxy();
     interceptor.Invoke("KZipFileEntry#$$$$$$$$$$$", "KZipFileEntry(KZip*, const QString&, int, int, const QString&, const QString&, const QString&, const QString&, qint64, qint64, int, qint64)", typeof(void), typeof(KZip), zip, typeof(string), name, typeof(int), access, typeof(int), date, typeof(string), user, typeof(string), group, typeof(string), symlink, typeof(string), path, typeof(long), start, typeof(long), uncompressedSize, typeof(int), encoding, typeof(long), compressedSize);
 }